Skip to content

Commit

Permalink
Add temp CI tests for ARM
Browse files Browse the repository at this point in the history
  • Loading branch information
ayrtonm committed Dec 12, 2023
1 parent aa517d2 commit a33bcaf
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,3 +64,19 @@ jobs:
make
popd
popd
tmp-arm-test:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Test ARM build
run: |
sudo apt-get install gcc-aarch64-linux-gnu
mkdir build
pushd build
cmake ..
-DCMAKE_C_COMPILER=`which aarch64-linux-gnu-gcc`
-G Ninja
ninja libia2
popd

0 comments on commit a33bcaf

Please sign in to comment.