Skip to content

Commit

Permalink
purge CI rust-cache
Browse files Browse the repository at this point in the history
  • Loading branch information
syphar committed Feb 29, 2024
1 parent 70b46ac commit d0d0617
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ on:

env:
RUST_BACKTRACE: 1
RUST_CACHE_KEY: rust-cache-20240229
DOCSRS_PREFIX: ignored/cratesfyi-prefix
DOCSRS_DATABASE_URL: postgresql://cratesfyi:password@localhost:15432
DOCSRS_LOG: docs_rs=debug,rustwide=info
Expand All @@ -36,7 +37,7 @@ jobs:
- name: restore build & cargo cache
uses: Swatinem/rust-cache@v2
with:
prefix-key: "rust-cache-20231109"
prefix-key: ${{ env.RUST_CACHE_KEY }}

- name: Build
run: cargo build --workspace --locked
Expand Down Expand Up @@ -84,7 +85,7 @@ jobs:
- name: restore build & cargo cache
uses: Swatinem/rust-cache@v2
with:
prefix-key: "rust-cache-20240201"
prefix-key: ${{ env.RUST_CACHE_KEY }}

- name: Build
run: cargo build --workspace --locked
Expand Down Expand Up @@ -123,6 +124,8 @@ jobs:
- name: restore build & cargo cache
uses: Swatinem/rust-cache@v2
with:
prefix-key: ${{ env.RUST_CACHE_KEY }}

- name: Launch postgres and min.io
run: |
Expand Down Expand Up @@ -171,5 +174,7 @@ jobs:

- name: restore build & cargo cache
uses: Swatinem/rust-cache@v2
with:
prefix-key: ${{ env.RUST_CACHE_KEY }}

- run: just lint

0 comments on commit d0d0617

Please sign in to comment.