From 1528ec27991016c46dd1bb3ab7a407aab08d7ab1 Mon Sep 17 00:00:00 2001 From: Axel Huebl Date: Mon, 26 Aug 2024 09:03:35 -0700 Subject: [PATCH] CI: Update macOS Runner (Latest) The old `macos-11` image is now removed. Update to running release `macos-latest`. --- .github/workflows/macos.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 59104ee24..b3dce7523 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -3,15 +3,13 @@ name: macos on: [push, pull_request] env: - CXX: "/usr/local/opt/llvm/bin/clang++" - LDFLAGS: "-L/usr/local/opt/llvm/lib" - CXXFLAGS: "-I/usr/local/opt/llvm/include -Werror -Wshadow -Woverloaded-virtual -Wunreachable-code -fsanitize=address -fsanitize=undefined" + CXXFLAGS: "-Werror -Wshadow -Woverloaded-virtual -Wunreachable-code -fsanitize=address -fsanitize=undefined" jobs: # Build PICSAR tests, PICSAR python bindings, and Kokkos examples tutorials-macos: name: QED with tests, python bindings, Kokkos examples - runs-on: macos-11 + runs-on: macos-latest steps: - uses: actions/checkout@v2 - name: Dependencies