diff options
author | Jan Janssen <medhefgo@web.de> | 2021-12-10 18:28:33 +0100 |
---|---|---|
committer | Jan Janssen <medhefgo@web.de> | 2021-12-11 11:03:29 +0100 |
commit | aa22e69856804bcb21909bf3cd3156aea06c80d3 (patch) | |
tree | 88d28df86e4f31ea82e0b340cd302a3b441a891a /.github/workflows/build_test.sh | |
parent | network-generator: support link6 network configuration (diff) | |
download | systemd-aa22e69856804bcb21909bf3cd3156aea06c80d3.tar.xz systemd-aa22e69856804bcb21909bf3cd3156aea06c80d3.zip |
ci: Build test with different linkers
Diffstat (limited to '.github/workflows/build_test.sh')
-rwxr-xr-x | .github/workflows/build_test.sh | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/.github/workflows/build_test.sh b/.github/workflows/build_test.sh index a718b6f37a..96f532ab22 100755 --- a/.github/workflows/build_test.sh +++ b/.github/workflows/build_test.sh @@ -62,6 +62,7 @@ PACKAGES=( ) COMPILER="${COMPILER:?}" COMPILER_VERSION="${COMPILER_VERSION:?}" +LINKER="${LINKER:?}" RELEASE="$(lsb_release -cs)" bash -c "echo 'deb-src http://archive.ubuntu.com/ubuntu/ $RELEASE main restricted universe multiverse' >>/etc/apt/sources.list" @@ -117,7 +118,12 @@ for args in "${ARGS[@]}"; do info "Checking build with $args" # shellcheck disable=SC2086 - if ! AR="$AR" CC="$CC" CXX="$CXX" CFLAGS="-Werror" CXXFLAGS="-Werror" meson -Dtests=unsafe -Dslow-tests=true -Dfuzz-tests=true --werror $args build; then + if ! AR="$AR" \ + CC="$CC" CC_LD="$LINKER" CFLAGS="-Werror" \ + CXX="$CXX" CXX_LD="$LINKER" CXXFLAGS="-Werror" \ + meson -Dtests=unsafe -Dslow-tests=true -Dfuzz-tests=true --werror \ + $args build; then + fatal "meson failed with $args" fi |