aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/build-extra.yml
diff options
context:
space:
mode:
authorLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2023-04-21 21:15:48 -0300
committerLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2023-04-28 04:45:57 -0300
commitfde591c2b72fb3b67694896bdf26bce4eec386e5 (patch)
tree39c69a6859a02ab9f78ef6f76eeff30fc25c8040 /.github/workflows/build-extra.yml
parentci: improve quotes in gitlab ci (diff)
downloadfirejail-fde591c2b72fb3b67694896bdf26bce4eec386e5.tar.gz
firejail-fde591c2b72fb3b67694896bdf26bce4eec386e5.tar.zst
firejail-fde591c2b72fb3b67694896bdf26bce4eec386e5.zip
ci: print some program versions
To make debugging easier.
Diffstat (limited to '.github/workflows/build-extra.yml')
-rw-r--r--.github/workflows/build-extra.yml3
1 files changed, 3 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