fix: Replace rust cache with direct cache use, as Rust is not installed on CI image
This commit is contained in:
parent
cd24a72078
commit
7763b2479b
1 changed files with 12 additions and 7 deletions
|
@ -120,10 +120,20 @@ jobs:
|
||||||
echo "COMMIT_SHORT_SHA=$calculatedSha" >> $GITHUB_ENV
|
echo "COMMIT_SHORT_SHA=$calculatedSha" >> $GITHUB_ENV
|
||||||
- name: Get Git commit timestamps
|
- name: Get Git commit timestamps
|
||||||
run: echo "TIMESTAMP=$(git log -1 --pretty=%ct)" >> $GITHUB_ENV
|
run: echo "TIMESTAMP=$(git log -1 --pretty=%ct)" >> $GITHUB_ENV
|
||||||
- uses: https://github.com/Swatinem/rust-cache@v2
|
- name: Rust cache
|
||||||
|
uses: actions/cache@v4
|
||||||
with:
|
with:
|
||||||
prefix-key: v0-rust-linux/${{ matrix.platform.slug }}
|
key: v0-rust-linux/${{ runner.os }}-${{ matrix.slug }}
|
||||||
|
path: |
|
||||||
|
~/.cargo/registry
|
||||||
|
~/.cargo/git/db
|
||||||
|
./target
|
||||||
id: rust-cache
|
id: rust-cache
|
||||||
|
- name: Cache timelord state
|
||||||
|
uses: actions/cache@v4
|
||||||
|
with:
|
||||||
|
path: "./timelord"
|
||||||
|
key: ${{ runner.os }}-${{ matrix.slug }}
|
||||||
- name: Inject cache into Docker
|
- name: Inject cache into Docker
|
||||||
uses: https://github.com/reproducible-containers/buildkit-cache-dance@v3.1.2
|
uses: https://github.com/reproducible-containers/buildkit-cache-dance@v3.1.2
|
||||||
with:
|
with:
|
||||||
|
@ -134,11 +144,6 @@ jobs:
|
||||||
"./target": "/app/target",
|
"./target": "/app/target",
|
||||||
"./timelord": "/timelord"
|
"./timelord": "/timelord"
|
||||||
}
|
}
|
||||||
- name: Cache timelord state
|
|
||||||
uses: actions/cache@v4
|
|
||||||
with:
|
|
||||||
path: "./timelord"
|
|
||||||
key: ${{ runner.os }}-${{ matrix.platform.slug }}
|
|
||||||
- name: Build and push Docker image by digest
|
- name: Build and push Docker image by digest
|
||||||
id: build
|
id: build
|
||||||
uses: docker/build-push-action@v6
|
uses: docker/build-push-action@v6
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue