From 6aa60d158211a388b396698fc600037686a05045 Mon Sep 17 00:00:00 2001 From: Carson Radtke Date: Fri, 15 Nov 2024 12:10:11 -0600 Subject: [PATCH] fix failing macos test Looks like https://github.com/actions/runner-images/issues/10703 took away support for xcode 14. That is why the latest action failed. There an active PR adding support for xcode 16 to the macos runner (https://github.com/actions/runner-images/pull/10967). This commit will fail until that has been merged, but it is probably worth waiting for. --- .github/workflows/compilers.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/compilers.yml b/.github/workflows/compilers.yml index 23866a63..44d20442 100644 --- a/.github/workflows/compilers.yml +++ b/.github/workflows/compilers.yml @@ -54,7 +54,7 @@ jobs: xcode: strategy: matrix: - xcode_version: [ '14.3.1', '15.4' ] + xcode_version: [ '15.4' ] build_type: [ Debug, Release ] cxx_version: [ 14, 17, 20, 23 ] runs-on: macos-latest