Skip to content
This repository was archived by the owner on Jan 17, 2026. It is now read-only.

Commit e56f8ca

Browse files
committed
uemu: .github: Do not run tests in parallel
1 parent 96df09f commit e56f8ca

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -100,14 +100,14 @@ jobs:
100100
-DCMAKE_BUILD_TYPE=Release
101101
cd ..
102102

103-
- name: Build project (parallel)
103+
- name: Build project
104104
run: |
105105
cd build
106106
make -j$(nproc)
107107
cd ..
108108

109-
- name: Run tests (parallel)
109+
- name: Run tests
110110
run: |
111111
cd build
112-
ctest --output-on-failure -j $(nproc)
112+
ctest --output-on-failure
113113
cd ..

0 commit comments

Comments
 (0)