Skip to content

Commit

Permalink
github: run "Build Release" test also with clang
Browse files Browse the repository at this point in the history
  • Loading branch information
thom311 committed Jul 25, 2023
1 parent 143cee1 commit c4240c0
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@ jobs:

- name: Install packages for Release
run: |
test "${{ matrix.cc }}" == gcc || exit 0
python3 -m pip install \
asciidoc \
graphviz \
Expand All @@ -85,17 +84,15 @@ jobs:
- name: Build Release
run: |
test "${{ matrix.cc }}" == gcc || exit 0
set -x
git clean -fdx
export CC="${{ matrix.cc }}"
NO_GPG_SIGN=1 ./tools/build_release.sh BuildAll
- name: Build out-of-tree and disable-static
run: |
set -x
git clean -fdx
export CC="${{ matrix.cc }}"
export CFLAGS="-Werror -Wall -Wdeclaration-after-statement -Wvla -std=gnu11"
if [ "$CC" = "clang" ]; then
Expand Down

0 comments on commit c4240c0

Please sign in to comment.