From 2b8927e66e7c23ca8aa878a5ae218d68b9d22940 Mon Sep 17 00:00:00 2001 From: Emmanuel Engelhart Date: Mon, 27 Oct 2025 09:01:28 +0100 Subject: [PATCH] Use macos-15 in CI --- .github/workflows/ci.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bc8f0abb..3f920cce 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,23 +11,25 @@ jobs: strategy: fail-fast: false matrix: - os: - - macos-14 target: + - macos-aarch64-dyn - macos-x86_64-dyn - ios-arm64-dyn - ios-x86_64-dyn include: + - target: macos-aarch64-dyn + arch_name: arm64-apple-macos + run_test: true - target: macos-x86_64-dyn arch_name: x86_64-apple-darwin run_test: true - target: ios-arm64-dyn arch_name: aarch64-apple-ios - run_test: true + run_test: false - target: ios-x86_64-dyn arch_name: x86-apple-ios-simulator - run_test: true - runs-on: ${{ matrix.os }} + run_test: false + runs-on: macos-15 env: HOME: /Users/runner