summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2023-07-25 11:28:32 (GMT)
committerThomas Haller <thaller@redhat.com>2023-07-25 11:30:38 (GMT)
commitc4240c0ba5d871a56552f64981f9fb4f0377366a (patch)
tree584f2287bb90806223bd5c6576f2215505955b5c
parent143cee1d381753c3ff01d51b39d77117d5c59bd2 (diff)
downloadlibnl-c4240c0ba5d871a56552f64981f9fb4f0377366a.zip
libnl-c4240c0ba5d871a56552f64981f9fb4f0377366a.tar.gz
libnl-c4240c0ba5d871a56552f64981f9fb4f0377366a.tar.bz2
github: run "Build Release" test also with clang
-rw-r--r--.github/workflows/ci.yml5
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