aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/build-extra.yml
diff options
context:
space:
mode:
authorLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2022-05-16 18:49:26 -0300
committerLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2022-05-17 11:22:27 -0300
commit6a89ab0236ba08b7ea85fc113fa4be995918877f (patch)
treea2302f753c96affc26b14813fa392f8858a36397 /.github/workflows/build-extra.yml
parentci: fix --version not printing compile-time features (diff)
downloadfirejail-6a89ab0236ba08b7ea85fc113fa4be995918877f.tar.gz
firejail-6a89ab0236ba08b7ea85fc113fa4be995918877f.tar.zst
firejail-6a89ab0236ba08b7ea85fc113fa4be995918877f.zip
ci: run firejail --version after build/install
To ensure that the resulting program actually runs and also to show which compile-time features it supports.
Diffstat (limited to '.github/workflows/build-extra.yml')
-rw-r--r--.github/workflows/build-extra.yml4
1 files changed, 4 insertions, 0 deletions
diff --git a/.github/workflows/build-extra.yml b/.github/workflows/build-extra.yml
index 27f11459c..6f9a4bc2c 100644
--- a/.github/workflows/build-extra.yml
+++ b/.github/workflows/build-extra.yml
@@ -35,6 +35,10 @@ jobs:
35 run: CC=clang-11 ./configure --enable-fatal-warnings 35 run: CC=clang-11 ./configure --enable-fatal-warnings
36 - name: make 36 - name: make
37 run: make 37 run: make
38 - name: make install
39 run: sudo make install
40 - name: print version
41 run: command -V firejail && firejail --version
38 scan-build: 42 scan-build:
39 runs-on: ubuntu-20.04 43 runs-on: ubuntu-20.04
40 steps: 44 steps: