From c7fa8539cf7e9f0ca8c70f804316d8ef6779f581 Mon Sep 17 00:00:00 2001 From: Niklas Sombert Date: Sun, 23 Jun 2024 16:17:30 +0200 Subject: [PATCH] CI: Disable cache for release --- .github/workflows/release.yml | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d780cea..b1bd02c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -7,14 +7,6 @@ jobs: runs-on: ubuntu-24.04 steps: - uses: actions/checkout@v4 - - name: Install Rust - uses: dtolnay/rust-toolchain@nightly - - name: Cache Cargo - uses: Swatinem/rust-cache@v2 - with: - shared-key: cargo-${{ vars.GITHUB_RUN_ID }}-${{ hashFiles('**/Cargo.lock') }} - cache-all-crates: true - cache-on-failure: true - name: Install qemu run: sudo apt-get update && sudo apt-get install -y --no-install-recommends qemu-system-x86 - name: Enable KVM group perms @@ -37,14 +29,6 @@ jobs: needs: test steps: - uses: actions/checkout@v4 - - name: Install Rust - uses: dtolnay/rust-toolchain@nightly - - name: Cache Cargo - uses: Swatinem/rust-cache@v2 - with: - shared-key: cargo-${{ vars.GITHUB_RUN_ID }}-${{ hashFiles('**/Cargo.lock') }} - cache-all-crates: true - cache-on-failure: true - name: Build for i686 uses: clechasseur/rs-cargo@v2 with: @@ -101,12 +85,6 @@ jobs: uses: dtolnay/rust-toolchain@nightly with: targets: x86_64-apple-darwin, aarch64-apple-darwin - - name: Cache Cargo - uses: Swatinem/rust-cache@v2 - with: - shared-key: cargo-${{ vars.GITHUB_RUN_ID }}-${{ hashFiles('**/Cargo.lock') }} - cache-all-crates: true - cache-on-failure: true - name: Build towbootctl for x86_64-apple uses: clechasseur/rs-cargo@v2 with: