Skip to content

Commit 6d0c751

Browse files
committed
split make test-github into different actions
1 parent 1e6116c commit 6d0c751

File tree

2 files changed

+17
-5
lines changed

2 files changed

+17
-5
lines changed

.github/workflows/build.yml

+15-3
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,21 @@ jobs:
6767
run: make
6868
- name: make install
6969
run: sudo make install
70-
- name: print version
70+
- name: print firejail version
7171
run: command -V firejail && firejail --version
72+
- name: lab setup
73+
run: SHELL=/bin/bash make lab-setup
7274
- name: run sysutils tests
7375
run: SHELL=/bin/bash make test-sysutils
74-
- name: run tests
75-
run: SHELL=/bin/bash make test-github
76+
- name: run profile tests
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

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -369,8 +369,8 @@ test: lab-setup test-profiles test-fcopy test-fnetfilter test-fs test-utils test
369369
test-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
370370
echo "TEST COMPLETE"
371371

372-
373-
test-github: lab-setup test-profiles test-fcopy test-fnetfilter test-fs test-utils test-environment
372+
# old gihub test; the new test is driven directly from .github/workflows/build.yml
373+
test-github: lab-setup test-profiles test-fcopy test-fnetfilter test-fs test-utils test-sysutils test-environment
374374
echo "TEST COMPLETE"
375375

376376
##########################################

0 commit comments

Comments
 (0)