Skip to content

Commit

Permalink
CI: build with clang 11 (#4277)
Browse files Browse the repository at this point in the history
  • Loading branch information
reinerh committed May 14, 2021
1 parent 3ff13e6 commit c9e7fe8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build-extra.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,19 +32,19 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: configure
run: CC=clang-10 ./configure --enable-fatal-warnings
run: CC=clang-11 ./configure --enable-fatal-warnings
- name: make
run: make
scan-build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: install clang-tools-10
run: sudo apt-get install clang-tools-10
- name: install clang-tools-11
run: sudo apt-get install clang-tools-11
- name: configure
run: CC=clang-10 ./configure --enable-fatal-warnings
run: CC=clang-11 ./configure --enable-fatal-warnings
- name: scan-build
run: NO_EXTRA_CFLAGS="yes" scan-build-10 --status-bugs make
run: NO_EXTRA_CFLAGS="yes" scan-build-11 --status-bugs make
cppcheck:
runs-on: ubuntu-20.04
steps:
Expand Down

0 comments on commit c9e7fe8

Please sign in to comment.