Skip to content

Commit

Permalink
Update build_and_release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
mamaheux authored Jan 8, 2024
1 parent c5230d7 commit 75e5274
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/build_and_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,11 +110,17 @@ jobs:
sudo apt-get install ninja-build cmake build-essential libssl-dev libboost-all-dev
sudo apt-get install libglib2.0-dev libgtk-3-dev libpulse-dev libasound2-dev
- name: Install cross compilation dependencies
- name: Install cross compilation dependencies (default GCC)
run: |
sudo apt-get install g++-aarch64-linux-gnu gcc-aarch64-linux-gnu
sudo apt-get install gcc-arm-linux-gnueabihf g++-arm-linux-gnueabihf
if: matrix.architecture == 'arm64'
if: matrix.architecture == 'arm64' && matrix.os != 'ubuntu-20.04'

- name: Install cross compilation dependencies (GCC 10)
run: |
sudo apt-get install g++-10-aarch64-linux-gnu gcc-10-aarch64-linux-gnu
sudo apt-get install gcc-10-arm-linux-gnueabihf g++-10-arm-linux-gnueabihf
if: matrix.architecture == 'arm64' && matrix.os == 'ubuntu-20.04'

- name: Create build directory
working-directory: .
Expand Down

0 comments on commit 75e5274

Please sign in to comment.