aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/build.yml
diff options
context:
space:
mode:
authorLibravatar Reiner Herrmann <reiner@reiner-h.de>2021-05-23 11:43:59 +0200
committerLibravatar Reiner Herrmann <reiner@reiner-h.de>2021-05-23 11:48:27 +0200
commit07b85f39afd6a22e65925dceabbf320ca6fb335d (patch)
tree9f19a367423ebc6003d1e5f3554f98db7a74b486 /.github/workflows/build.yml
parentMerge pull request #4293 from kmk3/configure-fix-portability (diff)
downloadfirejail-07b85f39afd6a22e65925dceabbf320ca6fb335d.tar.gz
firejail-07b85f39afd6a22e65925dceabbf320ca6fb335d.tar.zst
firejail-07b85f39afd6a22e65925dceabbf320ca6fb335d.zip
CI: build with GCC 11
this fixes a new false positive memory leak (#4297), but unfortunately opens a few new false positives (#4274). therefore let it ignore memleak checks for now, until the detection is a bit more stable in GCC. Fixes: #4274, #4297
Diffstat (limited to '.github/workflows/build.yml')
-rw-r--r--.github/workflows/build.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 07ab1431e..141e43168 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -24,9 +24,9 @@ jobs:
24 steps: 24 steps:
25 - uses: actions/checkout@v2 25 - uses: actions/checkout@v2
26 - name: install dependencies 26 - name: install dependencies
27 run: sudo apt-get install gcc-10 libapparmor-dev libselinux1-dev expect xzdec 27 run: sudo apt-get install gcc-11 libapparmor-dev libselinux1-dev expect xzdec
28 - name: configure 28 - name: configure
29 run: CC=gcc-10 ./configure --enable-fatal-warnings --enable-analyzer --enable-apparmor --enable-selinux --prefix=/usr 29 run: CC=gcc-11 ./configure --enable-fatal-warnings --enable-analyzer --enable-apparmor --enable-selinux --prefix=/usr
30 - name: make 30 - name: make
31 run: make 31 run: make
32 - name: make install 32 - name: make install