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.yml | |
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.yml')
-rw-r--r-- | .github/workflows/build_test.yml | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/.github/workflows/build_test.yml b/.github/workflows/build_test.yml index 887dfabf05..69487fa594 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 |