From 391063096b5091a1b61dff8e5b4a9a49b01f5abe Mon Sep 17 00:00:00 2001 From: Thomas Haller Date: Thu, 3 Aug 2023 12:25:46 +0200 Subject: github: add test for linking with mold and fail on unknown versions --- .github/workflows/ci.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 04316d3..7854579 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -73,6 +73,9 @@ jobs: export CFLAGS="-DNL_MORE_ASSERTS=1000 -O2 -Werror -Wall -Wdeclaration-after-statement -Wvla -std=gnu11" if [ "$CC" = "clang" ]; then CFLAGS="$CFLAGS -Wno-error=unused-command-line-argument -Wno-error=unused-function" + export LDFLAGS="-Wl,--no-undefined-version,--fatal-warnings" + else + export LDFLAGS="-Wl,--no-undefined-version" fi ./autogen.sh @@ -138,4 +141,14 @@ jobs: export NLTST_SEED_RAND= make -j 5 check + - name: Link with mold + run: | + sudo apt-get -y --no-install-recommends install \ + mold + git clean -fdx + export LDFLAGS="-fuse-ld=mold -Wl,--fatal-warnings" + ./autogen.sh + ./configure + make -j 5 V=1 + - run: echo "🍏 This job's status is ${{ job.status }}." -- cgit v0.12