@@ -19,20 +19,20 @@ jobs:
1919 build :
2020 runs-on : ubuntu-20.04
2121 concurrency :
22- group : ${{ github.workflow }}-${{ matrix.env.COMPILER }}-${{ matrix.env.COMPILER_VERSION }}-${{ github.ref }}
22+ group : ${{ github.workflow }}-${{ matrix.env.COMPILER }}-${{ matrix.env.COMPILER_VERSION }}-${{ matrix.env.LINKER }}-${{ github.ref }}
2323 cancel-in-progress : true
2424 strategy :
2525 fail-fast : false
2626 matrix :
2727 env :
28- - { COMPILER: "gcc", COMPILER_VERSION: "10" }
29- - { COMPILER: "gcc", COMPILER_VERSION: "11" }
30- - { COMPILER: "clang", COMPILER_VERSION: "11" }
31- - { COMPILER: "clang", COMPILER_VERSION: "12" }
32- - { COMPILER: "clang", COMPILER_VERSION: "13" }
28+ - { COMPILER: "gcc", COMPILER_VERSION: "10", LINKER: "bfd" }
29+ - { COMPILER: "gcc", COMPILER_VERSION: "11", LINKER: "gold" }
30+ - { COMPILER: "clang", COMPILER_VERSION: "11", LINKER: "bfd" }
31+ - { COMPILER: "clang", COMPILER_VERSION: "12", LINKER: "gold" }
32+ - { COMPILER: "clang", COMPILER_VERSION: "13", LINKER: "lld" }
3333 env : ${{ matrix.env }}
3434 steps :
3535 - name : Repository checkout
3636 uses : actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579
37- - name : Build check (${{ env.COMPILER }}-${{ env.COMPILER_VERSION }})
37+ - name : Build check (${{ env.COMPILER }}-${{ env.COMPILER_VERSION }}-${{ env.LINKER }} )
3838 run : sudo -E .github/workflows/build_test.sh
0 commit comments