File tree 6 files changed +17
-17
lines changed
6 files changed +17
-17
lines changed Original file line number Diff line number Diff line change 72
72
- name : make install
73
73
run : sudo make install
74
74
- name : print version
75
- run : make print-version
75
+ run : make installcheck
Original file line number Diff line number Diff line change 88
88
- name : make install
89
89
run : sudo make install
90
90
- name : print version
91
- run : make print-version
91
+ run : make installcheck
Original file line number Diff line number Diff line change 82
82
- name : make install
83
83
run : sudo make install
84
84
- name : print version
85
- run : make print-version
85
+ run : make installcheck
86
86
- run : make lab-setup
87
87
- run : make test-seccomp-extra
88
88
- run : make test-firecfg
@@ -131,7 +131,7 @@ jobs:
131
131
- name : make install
132
132
run : sudo make install
133
133
- name : print version
134
- run : make print-version
134
+ run : make installcheck
135
135
- run : make lab-setup
136
136
- run : make test-private-etc
137
137
- run : make test-fs
@@ -171,7 +171,7 @@ jobs:
171
171
- name : make install
172
172
run : sudo make install
173
173
- name : print version
174
- run : make print-version
174
+ run : make installcheck
175
175
- run : make lab-setup
176
176
- run : make test-environment
177
177
- run : make test-profiles
@@ -214,7 +214,7 @@ jobs:
214
214
- name : make install
215
215
run : sudo make install
216
216
- name : print version
217
- run : make print-version
217
+ run : make installcheck
218
218
- run : make lab-setup
219
219
- run : make test-utils
220
220
@@ -261,7 +261,7 @@ jobs:
261
261
- name : make install
262
262
run : sudo make install
263
263
- name : print version
264
- run : make print-version
264
+ run : make installcheck
265
265
- run : make lab-setup
266
266
- run : make test-fnetfilter
267
267
- run : make test-sysutils
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ build_ubuntu_package:
25
25
- make dist
26
26
- ./mkdeb.sh --enable-fatal-warnings
27
27
- dpkg -i ./*.deb
28
- - make print-version
28
+ - make installcheck
29
29
30
30
build_debian_package :
31
31
image : debian:buster
@@ -43,7 +43,7 @@ build_debian_package:
43
43
- make dist
44
44
- ./mkdeb.sh --enable-fatal-warnings
45
45
- dpkg -i ./*.deb
46
- - make print-version
46
+ - make installcheck
47
47
48
48
build_no_apparmor :
49
49
image : ubuntu:latest
@@ -63,8 +63,8 @@ build_no_apparmor:
63
63
./mkdeb.sh --enable-fatal-warnings
64
64
--disable-apparmor
65
65
- dpkg -i ./*.deb
66
- - make print-version
67
- - make print-version | grep -F 'AppArmor support is disabled'
66
+ - make installcheck
67
+ - make installcheck | grep -F 'AppArmor support is disabled'
68
68
69
69
build_redhat_package :
70
70
image : almalinux:latest
@@ -77,7 +77,7 @@ build_redhat_package:
77
77
- make dist
78
78
- ./platform/rpm/mkrpm.sh --enable-fatal-warnings
79
79
- rpm -i ./*.rpm
80
- - make print-version
80
+ - make installcheck
81
81
82
82
build_fedora_package :
83
83
image : fedora:latest
@@ -90,7 +90,7 @@ build_fedora_package:
90
90
- make dist
91
91
- ./platform/rpm/mkrpm.sh --enable-fatal-warnings
92
92
- rpm -i ./*.rpm
93
- - make print-version
93
+ - make installcheck
94
94
95
95
# FIXME: Cannot build src/libtrace with musl (see #6610).
96
96
# build_src_package:
@@ -108,7 +108,7 @@ build_fedora_package:
108
108
# || (cat config.log; exit 1)
109
109
# - make
110
110
# - make install-strip
111
- # - make print-version
111
+ # - make installcheck
112
112
113
113
debian_ci :
114
114
image : registry.salsa.debian.org/salsa-ci-team/ci-image-git-buildpackage:latest
Original file line number Diff line number Diff line change @@ -400,8 +400,8 @@ codespell:
400
400
print-env :
401
401
./ci/printenv.sh
402
402
403
- .PHONY : print-version
404
- print-version : config.mk
403
+ .PHONY : installcheck
404
+ installcheck : config.mk
405
405
command -V $(TARNAME ) && $(TARNAME ) --version
406
406
407
407
#
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ make -j "$(nproc)" &&
27
27
sudo make install
28
28
29
29
rm -fr gcov-dir gcov-file
30
- make print-version
30
+ make installcheck
31
31
gcov_generate
32
32
33
33
make test-firecfg | grep TESTING
You can’t perform that action at this time.
0 commit comments