From a33bcaf6a8129371c43cd36942b8d30049f869e1 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 | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 83aeb9f1a5..64db69b9e1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 +