From afe35b281ebc337554c5e3b874272a8b0a8aa3c8 Mon Sep 17 00:00:00 2001 From: Congyu WANG Date: Sat, 2 Nov 2024 18:01:28 +0800 Subject: [PATCH] attempt to fix macos build --- .github/workflows/CI.yml | 4 ++-- .github/workflows/PR.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index e48a278..11c922f 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -6,7 +6,7 @@ on: jobs: macos: - runs-on: macos-13 + runs-on: macos-latest strategy: fail-fast: false matrix: @@ -19,7 +19,7 @@ jobs: - name: Install llvm-19 run: | brew update - brew install llvm@19.1.2 + brew install llvm@19 brew install lld - uses: actions/setup-python@v5 with: diff --git a/.github/workflows/PR.yml b/.github/workflows/PR.yml index e425043..8702929 100644 --- a/.github/workflows/PR.yml +++ b/.github/workflows/PR.yml @@ -6,7 +6,7 @@ on: jobs: macos: - runs-on: macos-13 + runs-on: macos-latest strategy: fail-fast: false matrix: @@ -19,7 +19,7 @@ jobs: - name: Install llvm-19 run: | brew update - brew install llvm@19.1.2 + brew install llvm@19 brew install lld - uses: actions/setup-python@v5 with: