From: Jan Janssen Date: Fri, 10 Dec 2021 17:28:33 +0000 (+0100) Subject: ci: Build test with different linkers X-Git-Tag: v250-rc3~68^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=aa22e69856804bcb21909bf3cd3156aea06c80d3;p=thirdparty%2Fsystemd.git ci: Build test with different linkers --- diff --git a/.github/workflows/build_test.sh b/.github/workflows/build_test.sh index a718b6f37a5..96f532ab22e 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 diff --git a/.github/workflows/build_test.yml b/.github/workflows/build_test.yml index 887dfabf055..69487fa594c 100644 --- a/.github/workflows/build_test.yml +++ b/.github/workflows/build_test.yml @@ -19,20 +19,20 @@ jobs: build: runs-on: ubuntu-20.04 concurrency: - group: ${{ github.workflow }}-${{ matrix.env.COMPILER }}-${{ matrix.env.COMPILER_VERSION }}-${{ github.ref }} + group: ${{ github.workflow }}-${{ matrix.env.COMPILER }}-${{ matrix.env.COMPILER_VERSION }}-${{ matrix.env.LINKER }}-${{ github.ref }} cancel-in-progress: true strategy: fail-fast: false matrix: env: - - { COMPILER: "gcc", COMPILER_VERSION: "10" } - - { COMPILER: "gcc", COMPILER_VERSION: "11" } - - { COMPILER: "clang", COMPILER_VERSION: "11" } - - { COMPILER: "clang", COMPILER_VERSION: "12" } - - { COMPILER: "clang", COMPILER_VERSION: "13" } + - { COMPILER: "gcc", COMPILER_VERSION: "10", LINKER: "bfd" } + - { COMPILER: "gcc", COMPILER_VERSION: "11", LINKER: "gold" } + - { COMPILER: "clang", COMPILER_VERSION: "11", LINKER: "bfd" } + - { COMPILER: "clang", COMPILER_VERSION: "12", LINKER: "gold" } + - { COMPILER: "clang", COMPILER_VERSION: "13", LINKER: "lld" } env: ${{ matrix.env }} steps: - name: Repository checkout uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579 - - name: Build check (${{ env.COMPILER }}-${{ env.COMPILER_VERSION }}) + - name: Build check (${{ env.COMPILER }}-${{ env.COMPILER_VERSION }}-${{ env.LINKER }}) run: sudo -E .github/workflows/build_test.sh