Skip to content

Commit 99127fa

Browse files
committed
RVV CI: build sequentially with verbose
Signed-off-by: Olaf Bernstein <[email protected]>
1 parent 848b68d commit 99127fa

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/run-tests-rvv.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,27 +29,27 @@ jobs:
2929
CXX=riscv64-linux-gnu-g++-14 CC=riscv64-linux-gnu-gcc-14 VLEN=128 \
3030
cmake -DCMAKE_TOOLCHAIN_FILE=../cmake/Toolchains/rv64gcv-linux-gnu.cmake ..
3131
make -j$(nproc)
32-
ARGS=-j$(nproc) make test
32+
ARGS=-V make test
3333
- name: Test gcc-14 VLEN=256
3434
run: |
3535
cd build; rm -rf *
3636
CXX=riscv64-linux-gnu-g++-14 CC=riscv64-linux-gnu-gcc-14 VLEN=256 \
3737
cmake -DCMAKE_TOOLCHAIN_FILE=../cmake/Toolchains/rv64gcv-linux-gnu.cmake .. -DCMAKE_BUILD_TYPE=Release
3838
make -j$(nproc)
39-
ARGS=-j$(nproc) make test
39+
ARGS=-V make test
4040
- name: Test clang-18 VLEN=512
4141
run: |
4242
cd build; rm -rf *
4343
CXX=clang++-18 CC=clang-18 CFLAGS=--target=riscv64-linux-gnu VLEN=512 \
4444
cmake -DCMAKE_TOOLCHAIN_FILE=../cmake/Toolchains/rv64gcv-linux-gnu.cmake ..
4545
make -j$(nproc)
46-
ARGS=-j$(nproc) make test
46+
ARGS=-V make test
4747
- name: Test clang-18 VLEN=1024
4848
run: |
4949
cd build; rm -rf *
5050
CXX=clang++-18 CC=clang-18 CFLAGS=--target=riscv64-linux-gnu VLEN=1024 \
5151
cmake -DCMAKE_TOOLCHAIN_FILE=../cmake/Toolchains/rv64gcv-linux-gnu.cmake .. -DCMAKE_BUILD_TYPE=Release
5252
make -j$(nproc)
53-
ARGS=-j$(nproc) make test
53+
ARGS=-V make test
5454
5555

0 commit comments

Comments
 (0)