fix: github actions take latest job

This commit is contained in:
2025-06-23 00:24:00 +02:00
parent 5599dfc0ab
commit 2a747b80d7

View File

@@ -11,6 +11,7 @@ on:
jobs: jobs:
build: build:
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
name: ${{ matrix.name }}
strategy: 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. # 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. # To add more build types (Release, Debug, RelWithDebInfo, etc.) customize the build_type list.
matrix: matrix:
build_type: [Release]
include: include:
- os: macos-latest - os: macos-latest
arch: arm64 arch: arm64
c_compiler: clang c_compiler: clang
cpp_compiler: clang++ cpp_compiler: clang++
build_type: Release
name: macOS Clang arm64 name: macOS Clang arm64
- os: windows-latest - os: windows-latest
@@ -36,12 +37,14 @@ jobs:
c_compiler: cl c_compiler: cl
cpp_compiler: cl cpp_compiler: cl
vs_arch: x64 vs_arch: x64
build_type: Release
name: Windows MSVC x64 name: Windows MSVC x64
- os: ubuntu-latest - os: ubuntu-latest
arch: x86_64 arch: x86_64
c_compiler: gcc c_compiler: gcc
cpp_compiler: g++ cpp_compiler: g++
build_type: Release
name: Linux GCC x86_64 name: Linux GCC x86_64
steps: steps: