ci: remove caching
All checks were successful
Build and Upload filesorters Binaries / Build for Linux (push) Successful in -6m53s
All checks were successful
Build and Upload filesorters Binaries / Build for Linux (push) Successful in -6m53s
because for some reason my forgejo caches ain't working
This commit is contained in:
parent
bffc4a6ab8
commit
38320fcb5e
1 changed files with 10 additions and 10 deletions
|
@ -17,16 +17,16 @@ jobs:
|
||||||
- name: Install Rust
|
- name: Install Rust
|
||||||
uses: https://github.com/dtolnay/rust-toolchain@stable
|
uses: https://github.com/dtolnay/rust-toolchain@stable
|
||||||
|
|
||||||
- name: Cache Rust dependencies
|
# - name: Cache Rust dependencies
|
||||||
uses: actions/cache@v3
|
# uses: actions/cache@v3
|
||||||
with:
|
# with:
|
||||||
path: |
|
# path: |
|
||||||
~/.cargo/registry
|
# ~/.cargo/registry
|
||||||
~/.cargo/git
|
# ~/.cargo/git
|
||||||
target
|
# target
|
||||||
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
|
# key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
|
||||||
restore-keys: |
|
# restore-keys: |
|
||||||
${{ runner.os }}-cargo-
|
# ${{ runner.os }}-cargo-
|
||||||
|
|
||||||
- name: Build for Linux
|
- name: Build for Linux
|
||||||
run: cargo build --release
|
run: cargo build --release
|
||||||
|
|
Loading…
Reference in a new issue