build: compile instead of download ssl
Build / build (push) Failing after 11m34s

This commit is contained in:
2026-03-20 22:07:35 -03:00
parent ac72ea836b
commit 859203aa74
+10 -4
View File
@@ -21,11 +21,17 @@ jobs:
sudo apt-get update sudo apt-get update
sudo apt-get install -y cmake mingw-w64 libssl-dev dotnet-sdk-8.0 sudo apt-get install -y cmake mingw-w64 libssl-dev dotnet-sdk-8.0
- name: Install OpenSSL for MinGW - name: Build OpenSSL for MinGW
run: | run: |
wget -q https://github.com/nicowillis/openssl-mingw/releases/download/3.3.0/openssl-3.3.0-mingw64.tar.gz -O openssl-mingw.tar.gz || true wget -q https://www.openssl.org/source/openssl-3.3.0.tar.gz
sudo apt-get install -y libssl-dev:amd64 2>/dev/null || true tar xzf openssl-3.3.0.tar.gz
sudo apt-get install -y libssl-mingw-w64 2>/dev/null || true cd openssl-3.3.0
./Configure mingw64 \
--cross-compile-prefix=x86_64-w64-mingw32- \
--prefix=/usr/x86_64-w64-mingw32 \
no-shared no-tests
make -j$(nproc)
sudo make install_sw
- name: Configure CMake - name: Configure CMake
run: | run: |