aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/test.yml
diff options
context:
space:
mode:
authorLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2023-08-14 22:52:30 -0300
committerLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2023-08-22 04:58:21 -0300
commit500d8f2d6921f0d715d9e478e4fd10d6fe1f086f (patch)
treeda8bd129cb25f991aa5febf59cce4059deedb7aa /.github/workflows/test.yml
parentci: split build and test into separate workflows (diff)
downloadfirejail-500d8f2d6921f0d715d9e478e4fd10d6fe1f086f.tar.gz
firejail-500d8f2d6921f0d715d9e478e4fd10d6fe1f086f.tar.zst
firejail-500d8f2d6921f0d715d9e478e4fd10d6fe1f086f.zip
ci: run make in parallel where applicable
Do so when the output of the given job is not important. For example, when the output of another job can be used for debugging build-related issues.
Diffstat (limited to '.github/workflows/test.yml')
-rw-r--r--.github/workflows/test.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 83c9a578a..e716c32cf 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -73,7 +73,7 @@ jobs:
73 --enable-analyzer --enable-apparmor --enable-selinux 73 --enable-analyzer --enable-apparmor --enable-selinux
74 || (cat config.log; exit 1) 74 || (cat config.log; exit 1)
75 - name: make 75 - name: make
76 run: make 76 run: make -j "$(nproc)"
77 - name: make install 77 - name: make install
78 run: sudo make install 78 run: sudo make install
79 - name: print firejail version 79 - name: print firejail version