mirror of
https://github.com/Swatinem/rust-cache
synced 2025-04-05 21:24:07 +00:00
Cache-on-failure support (#22)
This commit is contained in:
parent
842ef286ff
commit
536c94f32c
4
.github/workflows/selftest.yml
vendored
4
.github/workflows/selftest.yml
vendored
|
@ -22,8 +22,10 @@ jobs:
|
||||||
override: true
|
override: true
|
||||||
|
|
||||||
- uses: ./
|
- uses: ./
|
||||||
|
with:
|
||||||
|
cache-on-failure: true
|
||||||
|
|
||||||
- run: |
|
- run: |
|
||||||
cargo install cargo-deny --locked
|
cargo install cargo-deny --locked
|
||||||
cargo check
|
cargo check
|
||||||
cargo test
|
cargo test
|
|
@ -31,6 +31,9 @@ located in the repo root.
|
||||||
: `target-dir`
|
: `target-dir`
|
||||||
The target directory that should be cleaned and persisted, defaults to `./target`.
|
The target directory that should be cleaned and persisted, defaults to `./target`.
|
||||||
|
|
||||||
|
: `cache-on-failure`
|
||||||
|
Cache even if the build fails, defaults to false
|
||||||
|
|
||||||
## Outputs
|
## Outputs
|
||||||
|
|
||||||
: `cache-hit`
|
: `cache-hit`
|
||||||
|
|
|
@ -14,6 +14,9 @@ inputs:
|
||||||
target-dir:
|
target-dir:
|
||||||
description: "The target dir that should be cleaned and persisted, defaults to `./target`"
|
description: "The target dir that should be cleaned and persisted, defaults to `./target`"
|
||||||
required: false
|
required: false
|
||||||
|
cache-on-failure:
|
||||||
|
description: "Cache even if the build fails. Defaults to false"
|
||||||
|
required: false
|
||||||
outputs:
|
outputs:
|
||||||
cache-hit:
|
cache-hit:
|
||||||
description: "A boolean value that indicates an exact match was found"
|
description: "A boolean value that indicates an exact match was found"
|
||||||
|
@ -21,7 +24,7 @@ runs:
|
||||||
using: "node12"
|
using: "node12"
|
||||||
main: "dist/restore/index.js"
|
main: "dist/restore/index.js"
|
||||||
post: "dist/save/index.js"
|
post: "dist/save/index.js"
|
||||||
post-if: "success()"
|
post-if: "success() || env.CACHE_ON_FAILURE == 'true'"
|
||||||
branding:
|
branding:
|
||||||
icon: "archive"
|
icon: "archive"
|
||||||
color: "gray-dark"
|
color: "gray-dark"
|
||||||
|
|
|
@ -9,6 +9,9 @@ import path from "path";
|
||||||
|
|
||||||
process.on("uncaughtException", (e) => {
|
process.on("uncaughtException", (e) => {
|
||||||
core.info(`[warning] ${e.message}`);
|
core.info(`[warning] ${e.message}`);
|
||||||
|
if (e.stack) {
|
||||||
|
core.info(e.stack)
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
const cwd = core.getInput("working-directory");
|
const cwd = core.getInput("working-directory");
|
||||||
|
|
|
@ -4,6 +4,11 @@ import { cleanTarget, getCacheConfig, getCargoBins, getPackages, stateBins, stat
|
||||||
|
|
||||||
async function run() {
|
async function run() {
|
||||||
try {
|
try {
|
||||||
|
var cacheOnFailure = core.getInput("cache-on-failure").toLowerCase()
|
||||||
|
if (cacheOnFailure !== "true") {
|
||||||
|
cacheOnFailure = "false"
|
||||||
|
}
|
||||||
|
core.exportVariable("CACHE_ON_FAILURE", cacheOnFailure)
|
||||||
core.exportVariable("CARGO_INCREMENTAL", 0);
|
core.exportVariable("CARGO_INCREMENTAL", 0);
|
||||||
|
|
||||||
const { paths, key, restoreKeys } = await getCacheConfig();
|
const { paths, key, restoreKeys } = await getCacheConfig();
|
||||||
|
|
Loading…
Reference in a new issue