From 93499a16d1a610479236fcbb450c3ea543188968 Mon Sep 17 00:00:00 2001 From: Ayrton Munoz Date: Tue, 12 Dec 2023 13:55:36 -0500 Subject: [PATCH] Add temp CI tests for ARM --- .github/workflows/ci.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 83aeb9f1a5..66abf4faca 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -64,3 +64,17 @@ jobs: make popd popd + tmp-arm-test: + runs-on: ubuntu-latest + steps: + - name: Check out code + - uses: actions/checkout@v3 + run: | + sudo apt-get gcc-aarch64-linux-gnu + mkdir build + pushd build + cmake .. + -DCMAKE_C_COMPILER=`which aarch64-linux-gnu-gcc` + -G Ninja + ninja libia2 + popd