Skip to content

Commit d519cfd

Browse files
committed
Nit CI styling
1 parent e9c078a commit d519cfd

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/cross-sve.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
uses: actions/checkout@v6
4343
- name: Setup
4444
run: |
45-
cmake -B _build \
45+
cmake -B build/ \
4646
-GNinja \
4747
-DBUILD_TESTS=ON -DDOWNLOAD_DOCTEST=ON \
4848
-DCMAKE_BUILD_TYPE=Release \
@@ -52,7 +52,7 @@ jobs:
5252
-DCMAKE_C_FLAGS="-march=armv8-a+sve -msve-vector-bits=${{ matrix.vector_bits }}" \
5353
-DCMAKE_CXX_FLAGS="-march=armv8-a+sve -msve-vector-bits=${{ matrix.vector_bits }}"
5454
- name: Build
55-
run: cmake --build _build
55+
run: cmake --build build/
5656
- name: Set CPU feature test expectations
5757
run: |
5858
echo "XSIMD_TEST_CPU_ASSUME_SSE4_2=0" >> "$GITHUB_ENV"
@@ -61,5 +61,4 @@ jobs:
6161
echo "XSIMD_TEST_CPU_ASSUME_SVE=1" >> "$GITHUB_ENV"
6262
echo "XSIMD_TEST_CPU_ASSUME_MANUFACTURER=unknown" >> "$GITHUB_ENV"
6363
- name: Testing xsimd
64-
run: qemu-aarch64 --cpu max,sve${{ matrix.vector_bits }}=on ./test/test_xsimd
65-
working-directory: ${{ github.workspace }}/_build
64+
run: qemu-aarch64 --cpu max,sve${{ matrix.vector_bits }}=on ./build/test/test_xsimd

0 commit comments

Comments
 (0)