From 2a747b80d71256565295f4851bcae5d2874df905 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20GUEZO?= Date: Mon, 23 Jun 2025 00:24:00 +0200 Subject: [PATCH] fix: github actions take latest job --- .github/workflows/cmake-multi-platform.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cmake-multi-platform.yml b/.github/workflows/cmake-multi-platform.yml index ed2ad72..40255d1 100644 --- a/.github/workflows/cmake-multi-platform.yml +++ b/.github/workflows/cmake-multi-platform.yml @@ -11,6 +11,7 @@ on: jobs: build: runs-on: ${{ matrix.os }} + name: ${{ matrix.name }} strategy: # Set fail-fast to false to ensure that feedback is delivered for all matrix combinations. Consider changing this to true when your workflow is stable. @@ -23,12 +24,12 @@ jobs: # # To add more build types (Release, Debug, RelWithDebInfo, etc.) customize the build_type list. matrix: - build_type: [Release] include: - os: macos-latest arch: arm64 c_compiler: clang cpp_compiler: clang++ + build_type: Release name: macOS Clang arm64 - os: windows-latest @@ -36,14 +37,16 @@ jobs: c_compiler: cl cpp_compiler: cl vs_arch: x64 + build_type: Release name: Windows MSVC x64 - os: ubuntu-latest arch: x86_64 c_compiler: gcc cpp_compiler: g++ + build_type: Release name: Linux GCC x86_64 - + steps: - uses: actions/checkout@v4