From 0feb95919924b1e49095cc8fc7154005e4e060f3 Mon Sep 17 00:00:00 2001 From: h7x4 Date: Tue, 11 Nov 2025 00:06:23 +0900 Subject: [PATCH] .gitea/workflows: remove rust cache step This is broken and just takes a bunch of time, removing it for now --- .gitea/workflows/build.yml | 9 --------- 1 file changed, 9 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index c013996..b3dba2f 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -17,9 +17,6 @@ jobs: toolchain: stable override: true - - name: Build or restore dependency cache - uses: Swatinem/rust-cache@v2 - - name: Build run: cargo build --all-features --verbose --release @@ -35,9 +32,6 @@ jobs: override: true components: rustfmt, clippy - - name: Build or restore dependency cache - uses: Swatinem/rust-cache@v2 - - name: Check code format run: cargo fmt -- --check @@ -55,9 +49,6 @@ jobs: toolchain: stable override: true - - name: Build or restore dependency cache - uses: Swatinem/rust-cache@v2 - - name: Build docs run: cargo doc --all-features --document-private-items --release