From 4dc7242b2c1b2d64bee7a950dc13b617357771f3 Mon Sep 17 00:00:00 2001 From: Paul Ramsey Date: Mon, 28 Oct 2024 12:46:28 -0700 Subject: [PATCH] more explicit versions in macos matrix --- .github/workflows/ci.yml | 28 +++++++++++++++++----------- 1 file changed, 17 insertions(+), 11 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2c461f3803..35436244e6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -377,18 +377,24 @@ jobs: name: 'macOS clang' strategy: matrix: - xcode: [12.4, 13.2.1] - cxxstd: [14] - build_type: ['ASAN'] include: - - xcode: 13.2.1 - cxxstd: 17 - build_type: Debug - - xcode: 13.2.1 - cxxstd: 20 - build_type: Debug - - runs-on: macos-latest + - xcode: 13.2.1 + cxxstd: 14 + build_type: ASAN + runs_on: macos-12 + - xcode: 14.3.1 + cxxstd: 17 + build_type: ASAN + runs_on: macos-13 + - xcode: 15.4 + cxxstd: 20 + build_type: Release + runs_on: macOS-14 + - xcode: 16.0 + cxxstd: 20 + build_type: Release + runs_on: macOS-15 + steps: - name: 'Setup'