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 eafda7e commit 9a4f84dCopy full SHA for 9a4f84d
.github/workflows/test.yml
@@ -6,11 +6,16 @@ jobs:
6
runs-on: ubuntu-24.04-arm
7
strategy:
8
matrix:
9
- cxx-compiler: [g++, clang++]
+ cxx-compiler: [g++]
10
defaults:
11
run:
12
shell: bash --noprofile --norc -euxo pipefail {0}
13
steps:
14
+ - name: Show system information
15
+ run: |
16
+ lscpu
17
+ lshw
18
+ numactl --hardware
19
- name: Checkout the repository
20
uses: actions/checkout@v4
21
- name: Build and run tests
@@ -22,6 +27,6 @@ jobs:
22
27
cmake . \
23
28
-D CMAKE_BUILD_TYPE='Release' \
24
29
-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'
26
31
cmake --build . -v
32
cmake --build . --target test
0 commit comments