Skip to content

Commit 4ecb866

Browse files
committed
Run tests in CI in parallel
1 parent db85d68 commit 4ecb866

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
working-directory: ./build
4848
run: |
4949
export $(dbus-launch)
50-
ctest --output-on-failure
50+
ctest --output-on-failure -j$(nproc)
5151
5252
build-fedora:
5353
name: Build, Test on Fedora Latest (Container)
@@ -70,7 +70,7 @@ jobs:
7070
working-directory: ./build
7171
run: |
7272
export $(dbus-launch)
73-
ctest --output-on-failure
73+
ctest --output-on-failure -j$(nproc)
7474
7575
build-fedora-nss:
7676
name: Build, Test on Fedora Rawhide (NSS) (Container)
@@ -93,7 +93,7 @@ jobs:
9393
working-directory: ./build
9494
run: |
9595
export $(dbus-launch)
96-
ctest --output-on-failure
96+
ctest --output-on-failure -j$(nproc)
9797
9898
build-macos:
9999
# The type of runner that the job will run on

0 commit comments

Comments
 (0)