diff options
author | Thomas Haller <thaller@redhat.com> | 2023-07-25 11:28:32 (GMT) |
---|---|---|
committer | Thomas Haller <thaller@redhat.com> | 2023-07-25 11:30:38 (GMT) |
commit | c4240c0ba5d871a56552f64981f9fb4f0377366a (patch) | |
tree | 584f2287bb90806223bd5c6576f2215505955b5c | |
parent | 143cee1d381753c3ff01d51b39d77117d5c59bd2 (diff) | |
download | libnl-c4240c0ba5d871a56552f64981f9fb4f0377366a.zip libnl-c4240c0ba5d871a56552f64981f9fb4f0377366a.tar.gz libnl-c4240c0ba5d871a56552f64981f9fb4f0377366a.tar.bz2 |
github: run "Build Release" test also with clang
-rw-r--r-- | .github/workflows/ci.yml | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 89a1553..bc6e504 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -72,7 +72,6 @@ jobs: - name: Install packages for Release run: | - test "${{ matrix.cc }}" == gcc || exit 0 python3 -m pip install \ asciidoc \ graphviz \ @@ -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 |