From 9ba1ddc8075f55edcb07473c25dc41969b2d15d1 Mon Sep 17 00:00:00 2001 From: jarzec Date: Tue, 10 Mar 2026 22:50:24 +0100 Subject: [PATCH] Fix the MacOS workflow --- .github/workflows/ci-macos.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-macos.yml b/.github/workflows/ci-macos.yml index b9d1b0f6..472f6b1b 100644 --- a/.github/workflows/ci-macos.yml +++ b/.github/workflows/ci-macos.yml @@ -3,7 +3,7 @@ on: [push, pull_request] jobs: test_cereal_macos: - runs-on: macos-latest + runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: @@ -11,12 +11,14 @@ jobs: - CMAKE_OPTIONS: '-DWITH_WERROR=OFF -DSKIP_PORTABILITY_TEST=ON -DSKIP_PERFORMANCE_COMPARISON=ON' COMPILER: 'clang++' XCODE_VERSION: 15 - NAME: macos-latest-clang-xcode15 + NAME: macos-14-clang-xcode15 + os: macos-14 - CMAKE_OPTIONS: '-DWITH_WERROR=OFF -DSKIP_PORTABILITY_TEST=ON -DSKIP_PERFORMANCE_COMPARISON=ON' COMPILER: 'clang++' XCODE_VERSION: 16 - NAME: macos-latest-clang-xcode16 + NAME: macos-15-clang-xcode16 + os: macos-15 name: ${{ matrix.name }} steps: