3
0
Fork 0
mirror of https://github.com/Swatinem/rust-cache synced 2025-04-05 21:24:07 +00:00

Added prefix-key cache-directories and cache-targets options (#85)

This commit is contained in:
Mikhail Katychev 2022-10-18 16:05:42 -05:00 committed by GitHub
parent 22c9328bcb
commit b8e72aae83
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 59 additions and 13 deletions

View file

@ -14,32 +14,42 @@ sensible defaults.
- uses: Swatinem/rust-cache@v2 - uses: Swatinem/rust-cache@v2
with: with:
# An explicit cache key that is used instead of the automatic `job`-based # The prefix cache key, this can be changed to start a new cache manually
# cache key and is thus stable across jobs. # default: "v0-rust"
# Default: empty prefix-key: ""
# An additional cache key that is stable over multiple jobs
# default: empty
shared-key: "" shared-key: ""
# An additional cache key that is added alongside the automatic `job`-based # An additional cache key that is added alongside the automatic `job`-based
# cache key and can be used to further differentiate jobs. # cache key and can be used to further differentiate jobs.
# Default: empty # default: empty
key: "" key: ""
# A whitespace separated list of env-var *prefixes* who's value contributes # A whitespace separated list of env-var *prefixes* who's value contributes
# to the environment cache key. # to the environment cache key.
# The env-vars are matched by *prefix*, so the default `RUST` var will # The env-vars are matched by *prefix*, so the default `RUST` var will
# match all of `RUSTC`, `RUSTUP_*`, `RUSTFLAGS`, `RUSTDOC_*`, etc. # match all of `RUSTC`, `RUSTUP_*`, `RUSTFLAGS`, `RUSTDOC_*`, etc.
# Default: "CARGO CC CFLAGS CXX CMAKE RUST" # default: "CARGO CC CFLAGS CXX CMAKE RUST"
env-vars: "" env-vars: ""
# The cargo workspaces and target directory configuration. # The cargo workspaces and target directory configuration.
# These entries are separated by newlines and have the form # These entries are separated by newlines and have the form
# `$workspace -> $target`. The `$target` part is treated as a directory # `$workspace -> $target`. The `$target` part is treated as a directory
# relative to the `$workspace` and defaults to "target" if not explicitly given. # relative to the `$workspace` and defaults to "target" if not explicitly given.
# Default: ". -> target" # default: ". -> target"
workspaces: "" workspaces: ""
# Additional non workspace directories, separated by newlines
cache-directories: ""
# Determines whether workspace `target` directories are cached.
# default: "true"
cache-targets: ""
# Determines if the cache should be saved even when the workflow has failed. # Determines if the cache should be saved even when the workflow has failed.
# Default: "false" # default: "false"
cache-on-failure: "" cache-on-failure: ""
``` ```

View file

@ -2,6 +2,10 @@ name: "Rust Cache"
description: "A GitHub Action that implements smart caching for rust/cargo projects with sensible defaults." description: "A GitHub Action that implements smart caching for rust/cargo projects with sensible defaults."
author: "Arpad Borsos <swatinem@swatinem.de>" author: "Arpad Borsos <swatinem@swatinem.de>"
inputs: inputs:
prefix-key:
description: "The prefix cache key, this can be changed to start a new cache manually"
required: false
default: "v0-rust"
shared-key: shared-key:
description: "An additional cache key that is stable over multiple jobs" description: "An additional cache key that is stable over multiple jobs"
required: false required: false
@ -14,6 +18,13 @@ inputs:
workspaces: workspaces:
description: "Paths to multiple Cargo workspaces and their target directories, separated by newlines" description: "Paths to multiple Cargo workspaces and their target directories, separated by newlines"
required: false required: false
cache-directories:
description: "Additional non workspace directories, separated by newlines"
required: false
cache-targets:
description: "Determines whether workspace targets are cached"
required: false
default: "true"
cache-on-failure: cache-on-failure:
description: "Cache even if the build fails. Defaults to false" description: "Cache even if the build fails. Defaults to false"
required: false required: false

12
dist/restore/index.js vendored
View file

@ -64545,7 +64545,7 @@ class CacheConfig {
// Construct key prefix: // Construct key prefix:
// This uses either the `shared-key` input, // This uses either the `shared-key` input,
// or the `key` input combined with the `job` key. // or the `key` input combined with the `job` key.
let key = `v0-rust`; let key = lib_core.getInput("prefix-key");
const sharedKey = lib_core.getInput("shared-key"); const sharedKey = lib_core.getInput("shared-key");
if (sharedKey) { if (sharedKey) {
key += `-${sharedKey}`; key += `-${sharedKey}`;
@ -64630,7 +64630,15 @@ class CacheConfig {
workspaces.push(new Workspace(root, target)); workspaces.push(new Workspace(root, target));
} }
self.workspaces = workspaces; self.workspaces = workspaces;
self.cachePaths = [config_CARGO_HOME, ...workspaces.map((ws) => ws.target)]; self.cachePaths = [config_CARGO_HOME];
const cacheTargets = lib_core.getInput("cache-targets").toLowerCase();
if (cacheTargets === "true") {
self.cachePaths.push(...workspaces.map((ws) => ws.target));
}
const cacheDirectories = lib_core.getInput("cache-directories");
for (const dir of cacheDirectories.trim().split("\n")) {
self.cachePaths.push(dir);
}
return self; return self;
} }
printInfo() { printInfo() {

12
dist/save/index.js vendored
View file

@ -64545,7 +64545,7 @@ class CacheConfig {
// Construct key prefix: // Construct key prefix:
// This uses either the `shared-key` input, // This uses either the `shared-key` input,
// or the `key` input combined with the `job` key. // or the `key` input combined with the `job` key.
let key = `v0-rust`; let key = core.getInput("prefix-key");
const sharedKey = core.getInput("shared-key"); const sharedKey = core.getInput("shared-key");
if (sharedKey) { if (sharedKey) {
key += `-${sharedKey}`; key += `-${sharedKey}`;
@ -64630,7 +64630,15 @@ class CacheConfig {
workspaces.push(new Workspace(root, target)); workspaces.push(new Workspace(root, target));
} }
self.workspaces = workspaces; self.workspaces = workspaces;
self.cachePaths = [CARGO_HOME, ...workspaces.map((ws) => ws.target)]; self.cachePaths = [CARGO_HOME];
const cacheTargets = core.getInput("cache-targets").toLowerCase();
if (cacheTargets === "true") {
self.cachePaths.push(...workspaces.map((ws) => ws.target));
}
const cacheDirectories = core.getInput("cache-directories");
for (const dir of cacheDirectories.trim().split("\n")) {
self.cachePaths.push(dir);
}
return self; return self;
} }
printInfo() { printInfo() {

View file

@ -50,7 +50,7 @@ export class CacheConfig {
// This uses either the `shared-key` input, // This uses either the `shared-key` input,
// or the `key` input combined with the `job` key. // or the `key` input combined with the `job` key.
let key = `v0-rust`; let key = core.getInput("prefix-key");
const sharedKey = core.getInput("shared-key"); const sharedKey = core.getInput("shared-key");
if (sharedKey) { if (sharedKey) {
@ -154,7 +154,16 @@ export class CacheConfig {
} }
self.workspaces = workspaces; self.workspaces = workspaces;
self.cachePaths = [CARGO_HOME, ...workspaces.map((ws) => ws.target)]; self.cachePaths = [CARGO_HOME];
const cacheTargets = core.getInput("cache-targets").toLowerCase();
if (cacheTargets === "true") {
self.cachePaths.push(...workspaces.map((ws) => ws.target));
}
const cacheDirectories = core.getInput("cache-directories");
for (const dir of cacheDirectories.trim().split("\n")) {
self.cachePaths.push(dir);
}
return self; return self;
} }