Skip to content

Commit 94f0b83

Browse files
authored
[CI] Add ARM64 build & test workflow (#195)
close #104
1 parent b76a2f4 commit 94f0b83

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,21 @@ jobs:
150150
run: |
151151
cd build
152152
ctest --output-on-failure
153+
build-linux-arm64:
154+
runs-on: ubuntu-24.04-arm
155+
steps:
156+
- uses: actions/checkout@v4
157+
with:
158+
submodules: true
159+
- name: Install prerequisites
160+
run: sudo apt-get update && sudo apt-get install -y libomp-dev build-essential cmake
161+
- name: Build and Test
162+
run: |
163+
cmake -S . -B build -DCMAKE_BUILD_TYPE=Release
164+
cmake --build build --parallel
165+
cmake --build build -t test
166+
env:
167+
CTEST_OUTPUT_ON_FAILURE: 1
153168
codecov:
154169
runs-on: ubuntu-latest
155170
steps:

0 commit comments

Comments
 (0)