From 6cae099a1b7bb0951009d5c1268d65d9c0cf03d9 Mon Sep 17 00:00:00 2001 From: Nils Wentzell Date: Mon, 24 Jan 2022 14:34:25 -0500 Subject: [PATCH] [ghactions] Switch back to macos-11 workers as macos-12 ones are not yet available --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5da889c2..c53a9af0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,8 +15,8 @@ jobs: include: - {os: ubuntu-20.04, cc: gcc-10, cxx: g++-10} - {os: ubuntu-20.04, cc: clang-13, cxx: clang++-13} - - {os: macos-12, cc: gcc-11, cxx: g++-11} - - {os: macos-12, cc: /usr/local/opt/llvm/bin/clang, cxx: /usr/local/opt/llvm/bin/clang++} + - {os: macos-11, cc: gcc-11, cxx: g++-11} + - {os: macos-11, cc: /usr/local/opt/llvm/bin/clang, cxx: /usr/local/opt/llvm/bin/clang++} runs-on: ${{ matrix.os }}