aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@protonmail.com>2023-01-31 14:10:31 -0500
committerLibravatar netblue30 <netblue30@protonmail.com>2023-01-31 14:10:31 -0500
commit6d0c7514edfce53ab33b66868193110fb5170d7d (patch)
tree7c8f1de77b85ae0162a294d1c8657da2549cbb65
parenttesting sysutils (diff)
downloadfirejail-6d0c7514e.tar.gz
firejail-6d0c7514e.tar.zst
firejail-6d0c7514e.zip
split make test-github into different actions
-rw-r--r--.github/workflows/build.yml18
-rw-r--r--Makefile4
2 files changed, 17 insertions, 5 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index a4dd7097d..a1211a72b 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -67,9 +67,21 @@ jobs:
67 run: make 67 run: make
68 - name: make install 68 - name: make install
69 run: sudo make install 69 run: sudo make install
70 - name: print version 70 - name: print firejail version
71 run: command -V firejail && firejail --version 71 run: command -V firejail && firejail --version
72 - name: lab setup
73 run: SHELL=/bin/bash make lab-setup
72 - name: run sysutils tests 74 - name: run sysutils tests
73 run: SHELL=/bin/bash make test-sysutils 75 run: SHELL=/bin/bash make test-sysutils
74 - name: run tests 76 - name: run profile tests
75 run: SHELL=/bin/bash make test-github 77 run: SHELL=/bin/bash make test-priofiles
78 - name: run fcopy tests
79 run: SHELL=/bin/bash make test-fcopy
80 - name: run fnetfilter tests
81 run: SHELL=/bin/bash make test-fnetfilter
82 - name: run fs tests
83 run: SHELL=/bin/bash make test-fs
84 - name: run utils tests
85 run: SHELL=/bin/bash make test-utils
86 - name: run environment tests
87 run: SHELL=/bin/bash make test-environment
diff --git a/Makefile b/Makefile
index 7def8d940..113fc7281 100644
--- a/Makefile
+++ b/Makefile
@@ -369,8 +369,8 @@ test: lab-setup test-profiles test-fcopy test-fnetfilter test-fs test-utils test
369test-noprofiles: lab-setup test-fcopy test-fnetfilter test-fs test-utils test-sysutils test-environment test-apps test-apps-x11 test-apps-x11-xorg test-filters 369test-noprofiles: lab-setup test-fcopy test-fnetfilter test-fs test-utils test-sysutils test-environment test-apps test-apps-x11 test-apps-x11-xorg test-filters
370 echo "TEST COMPLETE" 370 echo "TEST COMPLETE"
371 371
372 372# old gihub test; the new test is driven directly from .github/workflows/build.yml
373test-github: lab-setup test-profiles test-fcopy test-fnetfilter test-fs test-utils test-environment 373test-github: lab-setup test-profiles test-fcopy test-fnetfilter test-fs test-utils test-sysutils test-environment
374 echo "TEST COMPLETE" 374 echo "TEST COMPLETE"
375 375
376########################################## 376##########################################