From 8105da228d6e02be94296160f87f8f6b2289fd5e Mon Sep 17 00:00:00 2001 From: Sebastian Imlay Date: Thu, 4 Apr 2024 23:59:36 -0400 Subject: [PATCH] Move to llvm action rather than homebrew line --- .github/workflows/coreaudio-rs.yml | 24 ++++++++++++++++-------- 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/.github/workflows/coreaudio-rs.yml b/.github/workflows/coreaudio-rs.yml index 577ea8504..dabc9a817 100644 --- a/.github/workflows/coreaudio-rs.yml +++ b/.github/workflows/coreaudio-rs.yml @@ -6,8 +6,10 @@ jobs: runs-on: macOS-latest steps: - uses: actions/checkout@v4 - - name: Install llvm and clang - run: brew install llvm + - name: Install LLVM and Clang + uses: KyleMayes/install-llvm-action@v2.0 + with: + version: "15.0" - name: Install stable uses: actions-rs/toolchain@v1 with: @@ -34,8 +36,10 @@ jobs: runs-on: macOS-latest steps: - uses: actions/checkout@v4 - - name: Install llvm and clang - run: brew install llvm + - name: Install LLVM and Clang + uses: KyleMayes/install-llvm-action@v2.0 + with: + version: "15.0" - name: Install stable uses: actions-rs/toolchain@v1 with: @@ -54,8 +58,10 @@ jobs: runs-on: macOS-latest steps: - uses: actions/checkout@v4 - - name: Install llvm and clang - run: brew install llvm + - name: Install LLVM and Clang + uses: KyleMayes/install-llvm-action@v2.0 + with: + version: "15.0" - name: Install stable uses: actions-rs/toolchain@v1 with: @@ -74,8 +80,10 @@ jobs: runs-on: macOS-latest steps: - uses: actions/checkout@v4 - - name: Install llvm and clang - run: brew install llvm + - name: Install LLVM and Clang + uses: KyleMayes/install-llvm-action@v2.0 + with: + version: "15.0" - name: Install stable uses: actions-rs/toolchain@v1 with: