get openssl

git-svn-id: file:///raid/svn-personal/tewi/trunk@108 8739d7e6-ffea-ec47-b151-bdff447c6205
This commit is contained in:
Nishi 2024-09-20 15:01:22 +00:00
parent 96c20ef018
commit fa70f7b819

View File

@ -23,6 +23,10 @@ jobs:
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Install packages - name: Install packages
run: sudo apt-get install nsis mingw-w64 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 - name: Build
run: ./installer.sh win32 run: ./installer.sh win32
- name: Rename - name: Rename
@ -47,6 +51,10 @@ jobs:
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Install packages - name: Install packages
run: sudo apt-get install nsis mingw-w64 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 - name: Build
run: ./installer.sh win64 run: ./installer.sh win64
- name: Rename - name: Rename
@ -66,7 +74,7 @@ jobs:
permissions: permissions:
contents: write contents: write
needs: [build-win32] needs: [build-win32, build-win64]
steps: steps:
- name: Checkout - name: Checkout