Skip to content

Commit

Permalink
Update aarch64.yml: simplify as much as possible.
Browse files Browse the repository at this point in the history
  • Loading branch information
lemire authored May 11, 2024
1 parent 4f335c0 commit aa3b424
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/aarch64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
shared: [ON, OFF]
shared: [OFF]
steps:
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
- uses: uraimo/run-on-arch-action@v2
Expand All @@ -41,6 +41,6 @@ jobs:
apt-get update -q -y
apt-get install -y cmake make g++ ninja-build git
run: |
cmake -DADA_SANITIZE=ON -DBUILD_SHARED_LIBS=${{matrix.shared}} -G Ninja -B build
cmake --build build -j=2
cmake -DBUILD_SHARED_LIBS=${{matrix.shared}} -B build
cmake --build build
ctest --test-dir build

0 comments on commit aa3b424

Please sign in to comment.