From 8d7d631815f80fc6049ee35694ad0e5398bc04c9 Mon Sep 17 00:00:00 2001 From: Tristan Brindle Date: Fri, 2 Feb 2024 12:07:59 +0000 Subject: [PATCH] Update to macos-14 runner image Let's see if (a) it works, and (b) it speeds up our Mac CI https://github.blog/changelog/2024-01-30-github-actions-introducing-the-new-m1-macos-runner-available-to-open-source/ --- .github/workflows/macos.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 55072a52..cbfc77f5 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -11,7 +11,7 @@ on: jobs: build: - runs-on: macos-latest + runs-on: macos-14 strategy: matrix: compiler: [GCC-13, LLVM-Clang-16, LLVM-Clang-17] @@ -31,11 +31,11 @@ jobs: brew update brew install gcc@13 ninja - compiler: LLVM-Clang-16 - cxx: /usr/local/opt/llvm@16/bin/clang++ + cxx: $(brew --prefix llvm@16)/bin/clang++ install: | brew install llvm@16 ninja - compiler: LLVM-Clang-17 - cxx: /usr/local/opt/llvm@17/bin/clang++ + cxx: $(brew --prefix llvm@17)/bin/clang++ install: | brew install llvm@17 ninja