From 623b16aa4785953185858537e013b03e5e4aabfd Mon Sep 17 00:00:00 2001 From: Eugene Hauptmann Date: Thu, 6 Jun 2024 16:28:24 -0400 Subject: [PATCH] bringing back stable toolchain --- .github/workflows/coreaudio-sys.yml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/workflows/coreaudio-sys.yml b/.github/workflows/coreaudio-sys.yml index 6ed43c7..1c5628a 100644 --- a/.github/workflows/coreaudio-sys.yml +++ b/.github/workflows/coreaudio-sys.yml @@ -6,10 +6,12 @@ jobs: runs-on: macOS-latest strategy: matrix: - # toolchain: [stable, nightly] - toolchain: [nightly] + toolchain: [stable, nightly] + # toolchain: [nightly] steps: - uses: actions/checkout@v4 + - name: remove rust-toolchain.toml + run: rm -rf rust-toolchain.toml - name: Install LLVM and Clang uses: KyleMayes/install-llvm-action@v2.0.3 with: @@ -28,8 +30,8 @@ jobs: runs-on: macOS-14 strategy: matrix: - # toolchain: [stable, nightly] - toolchain: [nightly] + toolchain: [stable, nightly] + # toolchain: [nightly] target: [aarch64-apple-ios, x86_64-apple-ios, aarch64-apple-ios-sim] steps: - uses: actions/checkout@v4 @@ -37,7 +39,8 @@ jobs: with: toolchain: ${{ matrix.toolchain }} targets: ${{ matrix.target }} - + - name: remove rust-toolchain.toml + run: rm -rf rust-toolchain.toml - name: Install LLVM and Clang uses: KyleMayes/install-llvm-action@v2.0.3 with: