Skip to content

Commit

Permalink
CI: add a fancy name for each target
Browse files Browse the repository at this point in the history
  • Loading branch information
robUx4 committed Jan 5, 2025
1 parent 31c81ea commit 3f99878
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/generate-tools.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 3f99878

Please sign in to comment.