aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/build-extra.yml3
-rw-r--r--.github/workflows/profile-checks.yml1
-rw-r--r--.gitlab-ci.yml3
3 files changed, 7 insertions, 0 deletions
diff --git a/.github/workflows/build-extra.yml b/.github/workflows/build-extra.yml
index 13c575c8b..d11c10718 100644
--- a/.github/workflows/build-extra.yml
+++ b/.github/workflows/build-extra.yml
@@ -113,6 +113,7 @@ jobs:
113 run: sudo apt-get update 113 run: sudo apt-get update
114 - name: install cppcheck 114 - name: install cppcheck
115 run: sudo apt-get install cppcheck 115 run: sudo apt-get install cppcheck
116 - run: cppcheck --version
116 - name: cppcheck 117 - name: cppcheck
117 run: > 118 run: >
118 cppcheck -q --force --error-exitcode=1 --enable=warning,performance 119 cppcheck -q --force --error-exitcode=1 --enable=warning,performance
@@ -134,6 +135,7 @@ jobs:
134 run: sudo apt-get update 135 run: sudo apt-get update
135 - name: install cppcheck 136 - name: install cppcheck
136 run: sudo apt-get install cppcheck 137 run: sudo apt-get install cppcheck
138 - run: cppcheck --version
137 - name: cppcheck 139 - name: cppcheck
138 run: cppcheck -q --force --error-exitcode=1 --enable=warning,performance . 140 run: cppcheck -q --force --error-exitcode=1 --enable=warning,performance .
139 codespell: 141 codespell:
@@ -151,5 +153,6 @@ jobs:
151 run: sudo apt-get update 153 run: sudo apt-get update
152 - name: install dependencies 154 - name: install dependencies
153 run: sudo apt-get install codespell 155 run: sudo apt-get install codespell
156 - run: codespell --version
154 - name: codespell 157 - name: codespell
155 run: make codespell 158 run: make codespell
diff --git a/.github/workflows/profile-checks.yml b/.github/workflows/profile-checks.yml
index 4981b3c69..fc23f5fa1 100644
--- a/.github/workflows/profile-checks.yml
+++ b/.github/workflows/profile-checks.yml
@@ -34,6 +34,7 @@ jobs:
34 github.com:443 34 github.com:443
35 35
36 - uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab 36 - uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab
37 - run: python3 --version
37# - name: sort.py 38# - name: sort.py
38# run: > 39# run: >
39# ./ci/check/profiles/sort.py 40# ./ci/check/profiles/sort.py
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index edbed5c0b..9500415a1 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -17,6 +17,7 @@ build_ubuntu_package:
17 - make deb 17 - make deb
18 - dpkg -i firejail*.deb 18 - dpkg -i firejail*.deb
19 - command -V firejail && firejail --version 19 - command -V firejail && firejail --version
20 # - python3 --version
20 # - python3 contrib/sort.py etc/profile-*/*.profile etc/inc/*.inc 21 # - python3 contrib/sort.py etc/profile-*/*.profile etc/inc/*.inc
21 22
22build_debian_package: 23build_debian_package:
@@ -50,6 +51,7 @@ build_fedora_package:
50 - make rpms 51 - make rpms
51 - rpm -i firejail*.rpm 52 - rpm -i firejail*.rpm
52 - command -V firejail && firejail --version 53 - command -V firejail && firejail --version
54 # - python3 --version
53 # - python3 contrib/sort.py etc/profile-*/*.profile etc/inc/*.inc 55 # - python3 contrib/sort.py etc/profile-*/*.profile etc/inc/*.inc
54 56
55build_src_package: 57build_src_package:
@@ -62,6 +64,7 @@ build_src_package:
62 - make 64 - make
63 - make install-strip 65 - make install-strip
64 - command -V firejail && firejail --version 66 - command -V firejail && firejail --version
67 # - python3 --version
65 # - python3 contrib/sort.py etc/profile-*/*.profile etc/inc/*.inc 68 # - python3 contrib/sort.py etc/profile-*/*.profile etc/inc/*.inc
66 69
67build_no_apparmor: 70build_no_apparmor: