Skip to content

Commit

Permalink
try to add arm to github action
Browse files Browse the repository at this point in the history
  • Loading branch information
jacques-n committed Jul 26, 2024
1 parent 1dbf98b commit 27aa108
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/build_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
branches: [main]

jobs:
check:
linux-check:
runs-on: ubuntu-latest

steps:
Expand Down Expand Up @@ -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

0 comments on commit 27aa108

Please sign in to comment.