From b241a531df869208377f9188c693e842d21a404a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9-Marthin=20Helberg?= Date: Sat, 21 Sep 2024 15:09:15 +0200 Subject: [PATCH] Manually install openssl in build --- .github/workflows/ci.yml | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3fde7be..079c7ad 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -127,6 +127,9 @@ jobs: steps: - name: Checkout uses: actions/checkout@v3 + - name: SSL + run: sudo apt install libssl-dev openssl libssl-dev:armhf + if: ${{ matrix.platform.os == 'ubuntu-latest' }} - name: Build binary uses: houseabsolute/actions-rust-cross@v0 with: @@ -142,12 +145,12 @@ jobs: strategy: matrix: platform: - - release_for: FreeBSD-x86_64 - os: ubuntu-20.04 - target: x86_64-unknown-freebsd - bin: middleman - name: middleman-FreeBSD-x86_64.tar.gz - command: build + #- release_for: FreeBSD-x86_64 + # os: ubuntu-20.04 + # target: x86_64-unknown-freebsd + # bin: middleman + # name: middleman-FreeBSD-x86_64.tar.gz + # command: build - release_for: Linux-x86_64 os: ubuntu-20.04 @@ -188,6 +191,9 @@ jobs: steps: - name: Checkout uses: actions/checkout@v3 + - name: SSL + run: sudo apt install libssl-dev openssl libssl-dev:armhf + if: ${{ matrix.platform.os == 'ubuntu-latest' }} - name: Build binary uses: houseabsolute/actions-rust-cross@v0 with: