Skip to content

Commit 9a4f84d

Browse files
committed
fixup to actions
1 parent eafda7e commit 9a4f84d

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/test.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,16 @@ jobs:
66
runs-on: ubuntu-24.04-arm
77
strategy:
88
matrix:
9-
cxx-compiler: [g++, clang++]
9+
cxx-compiler: [g++]
1010
defaults:
1111
run:
1212
shell: bash --noprofile --norc -euxo pipefail {0}
1313
steps:
14+
- name: Show system information
15+
run: |
16+
lscpu
17+
lshw
18+
numactl --hardware
1419
- name: Checkout the repository
1520
uses: actions/checkout@v4
1621
- name: Build and run tests
@@ -22,6 +27,6 @@ jobs:
2227
cmake . \
2328
-D CMAKE_BUILD_TYPE='Release' \
2429
-D CMAKE_CXX_COMPILER='${{ matrix.cxx-compiler }}' \
25-
-D CMAKE_CXX_FLAGS='-Ofast -mcpu=native -mtune=native -msve-vector-bits=128'
30+
-D CMAKE_CXX_FLAGS='-mcpu=native -mtune=native -msve-vector-bits=128'
2631
cmake --build . -v
2732
cmake --build . --target test

0 commit comments

Comments
 (0)