aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorLibravatar Reiner Herrmann <reiner@reiner-h.de>2021-05-14 08:15:05 +0000
committerLibravatar GitHub <noreply@github.com>2021-05-14 10:15:05 +0200
commitc9e7fe8ab3631a5e2e48de466dfa349823c741e5 (patch)
treefbf7658f67ca6359cf1cace312284d5e79f74937 /.github
parentfix: discord logout on opening twice (diff)
downloadfirejail-c9e7fe8ab3631a5e2e48de466dfa349823c741e5.tar.gz
firejail-c9e7fe8ab3631a5e2e48de466dfa349823c741e5.tar.zst
firejail-c9e7fe8ab3631a5e2e48de466dfa349823c741e5.zip
CI: build with clang 11 (#4277)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build-extra.yml10
1 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/build-extra.yml b/.github/workflows/build-extra.yml
index 29f14788d..fd1f23954 100644
--- a/.github/workflows/build-extra.yml
+++ b/.github/workflows/build-extra.yml
@@ -32,19 +32,19 @@ jobs:
32 steps: 32 steps:
33 - uses: actions/checkout@v2 33 - uses: actions/checkout@v2
34 - name: configure 34 - name: configure
35 run: CC=clang-10 ./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 scan-build: 38 scan-build:
39 runs-on: ubuntu-20.04 39 runs-on: ubuntu-20.04
40 steps: 40 steps:
41 - uses: actions/checkout@v2 41 - uses: actions/checkout@v2
42 - name: install clang-tools-10 42 - name: install clang-tools-11
43 run: sudo apt-get install clang-tools-10 43 run: sudo apt-get install clang-tools-11
44 - name: configure 44 - name: configure
45 run: CC=clang-10 ./configure --enable-fatal-warnings 45 run: CC=clang-11 ./configure --enable-fatal-warnings
46 - name: scan-build 46 - name: scan-build
47 run: NO_EXTRA_CFLAGS="yes" scan-build-10 --status-bugs make 47 run: NO_EXTRA_CFLAGS="yes" scan-build-11 --status-bugs make
48 cppcheck: 48 cppcheck:
49 runs-on: ubuntu-20.04 49 runs-on: ubuntu-20.04
50 steps: 50 steps: