diff --git a/.github/workflows/generate-tools.yaml b/.github/workflows/generate-tools.yaml index cf4a51a9..43379226 100644 --- a/.github/workflows/generate-tools.yaml +++ b/.github/workflows/generate-tools.yaml @@ -6,19 +6,19 @@ on: jobs: build_tools: - name: Build all tools for ${{ matrix.target.os }} ${{ matrix.target.cmake_env }} + name: Build all tools for ${{ matrix.target.name }} runs-on: ${{ matrix.target.os }} strategy: fail-fast: false matrix: target: [ - {"os": "ubuntu-latest", "cmake_env": "CC=gcc-14"}, - {"os": "ubuntu-latest", "cmake_env": "CC=clang-18"}, - {"os": "ubuntu-20.04", "cmake_env": "CC=gcc-9"}, - {"os": "ubuntu-20.04", "cmake_env": "CC=clang-10"}, - {"os": "macos-latest", "cmake_env": "CMAKE_OSX_ARCHITECTURES=arm64"}, - {"os": "macos-latest", "cmake_env": "CMAKE_OSX_ARCHITECTURES=x86_64"}, - {"os": "windows-latest"}, + {"name": "Linux GCC 14", "os": "ubuntu-latest", "cmake_env": "CC=gcc-14"}, + {"name": "Linux Clang 18", "os": "ubuntu-latest", "cmake_env": "CC=clang-18"}, + {"name": "Linux GCC 9", "os": "ubuntu-20.04", "cmake_env": "CC=gcc-9"}, + {"name": "Linux Clang 10", "os": "ubuntu-20.04", "cmake_env": "CC=clang-10"}, + {"name": "macOS arm64", "os": "macos-latest", "cmake_env": "CMAKE_OSX_ARCHITECTURES=arm64"}, + {"name": "macOS x86_64", "os": "macos-latest", "cmake_env": "CMAKE_OSX_ARCHITECTURES=x86_64"}, + {"name": "Windows", "os": "windows-latest"}, ] include: - os: windows-latest