Skip to content

Commit

Permalink
remember this is cross compile
Browse files Browse the repository at this point in the history
  • Loading branch information
scarmuega committed Oct 14, 2023
1 parent cfa281c commit ed2169b
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit ed2169b

Please sign in to comment.