Skip to content

Commit

Permalink
Install cross compiler
Browse files Browse the repository at this point in the history
  • Loading branch information
jfantinhardesty committed Jul 31, 2024
1 parent ae61cd8 commit 04ec1d6
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/cmake-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,12 @@ jobs:

steps:
- uses: actions/checkout@v4

- name: Install cross compiler
if: ${{ Contains(matrix.os, 'ubuntu') }}
run: |
sudo apt-get update
sudo apt-get install -y g++-aarch64-linux-gnu gcc-aarch64-linux-gnu
- name: Setup vcpkg
uses: lukka/run-vcpkg@v11
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,12 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4

- name: Install cross compiler
if: ${{ Contains(matrix.os, 'ubuntu') }}
run: |
sudo apt-get update
sudo apt-get install -y g++-aarch64-linux-gnu gcc-aarch64-linux-gnu
- name: Setup vcpkg
uses: lukka/run-vcpkg@v11
id: runvcpkg
Expand Down

0 comments on commit 04ec1d6

Please sign in to comment.