From fa70f7b81933394beedfa817460dc82960169e6a Mon Sep 17 00:00:00 2001 From: Nishi Date: Fri, 20 Sep 2024 15:01:22 +0000 Subject: [PATCH] get openssl git-svn-id: file:///raid/svn-personal/tewi/trunk@108 8739d7e6-ffea-ec47-b151-bdff447c6205 --- .github/workflows/build.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 948143d..4a23b05 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -23,6 +23,10 @@ jobs: uses: actions/checkout@v4 - name: Install packages run: sudo apt-get install nsis mingw-w64 + - name: Get OpenSSL + run: git clone https://github.com/clamwin/openssl + - name: Make it use the correct library + run: cp openssl/lib/mingw/x86/*.a openssl/lib/ - name: Build run: ./installer.sh win32 - name: Rename @@ -47,6 +51,10 @@ jobs: uses: actions/checkout@v4 - name: Install packages run: sudo apt-get install nsis mingw-w64 + - name: Get OpenSSL + run: git clone https://github.com/clamwin/openssl + - name: Make it use the correct library + run: cp openssl/lib/mingw/x64/*.a openssl/lib/ - name: Build run: ./installer.sh win64 - name: Rename @@ -66,7 +74,7 @@ jobs: permissions: contents: write - needs: [build-win32] + needs: [build-win32, build-win64] steps: - name: Checkout