From da8b348b93c4578eb3625efba59736c92d2eaacd Mon Sep 17 00:00:00 2001 From: Bryan Chan Date: Fri, 12 Jul 2024 01:55:29 -0400 Subject: [PATCH] [workflows] Upgrade GitHub runner to macOS-13 GitHub has stopped supporting macOS-11, causing our workflows to wait indefinitely for an unavailable runner. --- .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 9372d31687db..8a41d82a7c4d 100644 --- a/.github/workflows/llvm-project-tests.yml +++ b/.github/workflows/llvm-project-tests.yml @@ -66,10 +66,8 @@ jobs: target: [X86] os: - ubuntu-latest - # We're using a specific version of macOS due to: - # https://github.com/actions/virtual-environments/issues/5900 - - macOS-11 - windows-latest + - macOS-13 include: # Enable Windows on ARM build, when an official # self-hosted machine is available. @@ -137,7 +135,7 @@ jobs: ninja check-all shell: powershell - name: Test clang macOS - if: ${{ matrix.os == 'macOS-11'}} + if: ${{ matrix.os == 'macOS-13'}} env: # Workaround for https://github.com/actions/virtual-environments/issues/5900. # This should be a no-op for non-mac OSes