From 8480453286be9e6cacc3bf1d36aa7ca6109e7623 Mon Sep 17 00:00:00 2001 From: Jean-Christophe Fillion-Robin Date: Wed, 28 Jun 2023 18:07:34 -0400 Subject: [PATCH] ci: Fix macos build using "macos-latest" instead of obsolete "macos-10.15" See https://github.blog/changelog/2022-07-20-github-actions-the-macos-10-15-actions-runner-image-is-being-deprecated-and-will-be-removed-by-8-30-22/ --- .github/workflows/CI.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 260f6825..c7ff886d 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -12,10 +12,10 @@ jobs: strategy: fail-fast: false matrix: - runs-on: [macos-10.15] + runs-on: [macos-latest] python-version: [3.7.12, 3.8.12, 3.9.10] include: - - runs-on: macos-10.15 + - runs-on: macos-latest c-compiler: "clang" cxx-compiler: "clang++" initial-dashboard-cache: "CMAKE_OSX_DEPLOYMENT_TARGET:STRING=10.13" @@ -37,11 +37,6 @@ jobs: with: version: 1.10.0 - - name: Specific XCode version - if: matrix.runs-on == 'macos-10.15' - run: | - sudo xcode-select -s "/Applications/Xcode_11.7.app" - - name: Download dashboard script uses: actions/checkout@v3 with: