From 1e759fc516cbb6db6acc9e20a054735a6236b860 Mon Sep 17 00:00:00 2001 From: Hans Kratz Date: Sun, 9 Nov 2025 11:13:54 +0100 Subject: [PATCH] gh actions: use macos-15-intel for x86 tests --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 72ea591f..66ce610f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,18 +16,18 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-latest, macos-latest, windows-latest, macos-13] + os: [ubuntu-latest, macos-latest, windows-latest, macos-15-intel] toolchain: ["1.38.0", "1.61.0", stable, beta, nightly] exclude: - os: macos-latest toolchain: "1.38.0" # macOS ARM64 is not supported by 1.38.0 - - os: macos-13 + - os: macos-15-intel toolchain: "1.38.0" # macOS is not supported by 1.38.0 (flexpect) - toolchain: "1.61.0" # only macos include: - os: macos-latest toolchain: "1.61.0" - - os: macos-13 + - os: macos-15-intel toolchain: "1.61.0" env: RUSTFLAGS: "-D warnings"