diff --git a/.github/workflows/ci-scripts-build.yml b/.github/workflows/ci-scripts-build.yml index 0afd27852..e3bc2fe54 100644 --- a/.github/workflows/ci-scripts-build.yml +++ b/.github/workflows/ci-scripts-build.yml @@ -21,7 +21,7 @@ env: jobs: build-base: - name: ${{ matrix.os }}/${{ matrix.cmp }}/${{ matrix.configuration }}/${{ matrix.wine }}${{ matrix.rtems }}/${{ matrix.extra }} + name: ${{ matrix.name }} runs-on: ${{ matrix.os }} # Set environment variables from matrix parameters env: @@ -38,66 +38,80 @@ jobs: cmp: gcc configuration: default wine: "64" + name: "Ub-20 gcc-9 + MinGW" - os: ubuntu-20.04 cmp: gcc configuration: static wine: "64" + name: "Ub-20 gcc-9 + MinGW, static" - os: ubuntu-20.04 cmp: gcc configuration: static extra: "CMD_CXXFLAGS=-std=c++11" + name: "Ub-20 gcc-9 C++11, static" - os: ubuntu-16.04 cmp: clang configuration: default + name: "Ub-16 clang-9" - os: ubuntu-20.04 cmp: clang configuration: default extra: "CMD_CXXFLAGS=-std=c++11" + name: "Ub-20 clang-10 C++11" - os: ubuntu-20.04 cmp: gcc configuration: default rtems: "4.10" + name: "Ub-20 gcc-9 + RT-4.10" - os: ubuntu-20.04 cmp: gcc configuration: default rtems: "4.9" + name: "Ub-20 gcc-9 + RT-4.9" - os: ubuntu-16.04 cmp: gcc-4.8 utoolchain: true configuration: default + name: "Ub-16 gcc-4.8" - os: ubuntu-16.04 cmp: gcc-4.9 utoolchain: true configuration: default + name: "Ub-16 gcc-4.9" - os: ubuntu-20.04 cmp: gcc-8 utoolchain: true configuration: default + name: "Ub-20 gcc-8" - os: ubuntu-20.04 cmp: clang configuration: default + name: "Ub-20 clang-10" - os: macos-latest cmp: clang configuration: default + name: "MacOS clang-12" - os: windows-2019 cmp: vs2019 configuration: default + name: "Win2019 MSC-19" - os: windows-2019 cmp: vs2019 configuration: static + name: "Win2019 MSC-19, static" steps: - uses: actions/checkout@v2