From 27aa1086d4c1469f25806704712e63fde518e99f Mon Sep 17 00:00:00 2001 From: Jacques Nadeau Date: Thu, 25 Jul 2024 14:38:04 -1000 Subject: [PATCH] try to add arm to github action --- .github/workflows/build_test.yml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build_test.yml b/.github/workflows/build_test.yml index e69559ea..31080ba7 100644 --- a/.github/workflows/build_test.yml +++ b/.github/workflows/build_test.yml @@ -8,7 +8,7 @@ on: branches: [main] jobs: - check: + linux-check: runs-on: ubuntu-latest steps: @@ -46,4 +46,17 @@ jobs: run: ninja -C build - name: Test run: ctest --test-dir build --output-on-failure --timeout 30 + darwin-arm64-check: + needs: prepare + runs-on: macos-14-arm64 + steps: + - uses: actions/checkout@v3 + with: + ref: ${{ github.head_ref }} + - name: Debug Build + shell: bash + run: make + - name: Debug Test + shell: bash + run: ctest --test-dir build-Debug --output-on-failure --timeout 30