Skip to content

Commit 827928b

Browse files
committed
CI: Try to parallelize workflow
1 parent eaa0374 commit 827928b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/linux.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,14 +52,14 @@ jobs:
5252
- name: Install Catch2
5353
run: |
5454
cmake -Bbuild -H. -DBUILD_TESTING=OFF
55-
sudo cmake --build build/ --target install
55+
sudo cmake --build build/ --target install -j2
5656
working-directory: ./Catch2
5757

5858
- name: Configure and build
5959
run: |
6060
cmake -Bbuild
61-
cmake --build build
61+
cmake --build build -j2
6262
6363
- name: run tests
6464
run: |
65-
ctest --output-on-failure --test-dir build/tests
65+
ctest --output-on-failure --test-dir build/tests -j2

0 commit comments

Comments
 (0)