We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b76a2f4 commit 94f0b83Copy full SHA for 94f0b83
1 file changed
.github/workflows/ci.yml
@@ -150,6 +150,21 @@ jobs:
150
run: |
151
cd build
152
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
168
codecov:
169
runs-on: ubuntu-latest
170
steps:
0 commit comments