From ed2169b37618dc31b590e3db2f22aad124127b96 Mon Sep 17 00:00:00 2001 From: Santiago Carmuega Date: Sat, 14 Oct 2023 07:40:40 -0300 Subject: [PATCH] remember this is cross compile --- .github/workflows/release.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0120b3ea..458a6245 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -49,17 +49,17 @@ jobs: runs-on: ${{ matrix.os }} steps: - - name: install deps [ubuntu] - if: matrix.os == 'ubuntu-latest' + - name: get dependencies [Ubuntu] + if: matrix.release_for == 'Linux-GNU-x86_64' run: | - sudo apt update - sudo apt install pkg-config libssl-dev + sudo apt-get install libssl-dev - - name: install clang llvm [ubuntu] - if: matrix.os == 'ubuntu-latest' - uses: KyleMayes/install-llvm-action@v1 - with: - version: "15.0" + - name: get dependencies [Ubuntu/ARM] + if: matrix.release_for == 'Linux-GNU-armv7' + run: | + sudo dpkg --add-architecture armhf + sudo apt-get update + sudo apt-get install libssl-dev:armhf gcc-arm-linux-gnueabihf - name: install deps [MacOS] if: matrix.os == 'macOS-latest'