From d9e02a30b16ea65a7da87913c40af03e22c9571f Mon Sep 17 00:00:00 2001 From: Tom Stellard Date: Wed, 27 Jul 2022 15:23:24 -0700 Subject: [PATCH] workflows: Use macos-11 runners macos-10.15 is deprecated and will be removed. --- .github/workflows/llvm-project-tests.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/llvm-project-tests.yml b/.github/workflows/llvm-project-tests.yml index 4910ddbe5cfd..78bb4a88bafe 100644 --- a/.github/workflows/llvm-project-tests.yml +++ b/.github/workflows/llvm-project-tests.yml @@ -39,9 +39,7 @@ jobs: - windows-2019 # We're using a specific version of macOS due to: # https://github.com/actions/virtual-environments/issues/5900 - # We need addtional testing to see if our workaround works for - # new macOS builds. - - macOS-10.15 + - macOS-11 steps: - name: Setup Windows if: startsWith(matrix.os, 'windows') @@ -74,7 +72,7 @@ jobs: env: # Workaround for https://github.com/actions/virtual-environments/issues/5900. # This should be a no-op for non-mac OSes - PKG_CONFIG_PATH: /usr/local/Homebrew/Library/Homebrew/os/mac/pkgconfig//11 + PKG_CONFIG_PATH: /usr/local/Homebrew/Library/Homebrew/os/mac/pkgconfig//12 with: cmake_args: '-GNinja -DLLVM_ENABLE_PROJECTS="${{ inputs.projects }}" -DCMAKE_BUILD_TYPE=Release -DLLDB_INCLUDE_TESTS=OFF -DCMAKE_C_COMPILER_LAUNCHER=sccache -DCMAKE_CXX_COMPILER_LAUNCHER=sccache' build_target: '${{ inputs.build_target }}'