3
0
Fork 0
mirror of https://github.com/Swatinem/rust-cache synced 2025-04-05 21:24:07 +00:00
This commit is contained in:
Arpad Borsos 2022-07-16 12:42:15 +02:00
parent 622616010e
commit 5733786579
No known key found for this signature in database
GPG key ID: FC7BCA77824B3298
2 changed files with 30 additions and 24 deletions

29
dist/restore/index.js vendored
View file

@ -61586,7 +61586,7 @@ var cache = __nccwpck_require__(7799);
// EXTERNAL MODULE: ./node_modules/@actions/core/lib/core.js // EXTERNAL MODULE: ./node_modules/@actions/core/lib/core.js
var lib_core = __nccwpck_require__(2186); var lib_core = __nccwpck_require__(2186);
// EXTERNAL MODULE: ./node_modules/@actions/io/lib/io.js // EXTERNAL MODULE: ./node_modules/@actions/io/lib/io.js
var lib_io = __nccwpck_require__(7436); var io = __nccwpck_require__(7436);
// EXTERNAL MODULE: external "fs" // EXTERNAL MODULE: external "fs"
var external_fs_ = __nccwpck_require__(7147); var external_fs_ = __nccwpck_require__(7147);
var external_fs_default = /*#__PURE__*/__nccwpck_require__.n(external_fs_); var external_fs_default = /*#__PURE__*/__nccwpck_require__.n(external_fs_);
@ -61700,10 +61700,10 @@ class CacheConfig {
static async new() { static async new() {
const self = new CacheConfig(); const self = new CacheConfig();
// Construct key prefix: // Construct key prefix:
// This uses either the `sharedKey` 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 = `v0-rust`;
const sharedKey = lib_core.getInput("sharedKey"); const sharedKey = lib_core.getInput("shared-key");
if (sharedKey) { if (sharedKey) {
key += `-${sharedKey}`; key += `-${sharedKey}`;
} }
@ -61721,7 +61721,7 @@ class CacheConfig {
// Construct environment portion of the key: // Construct environment portion of the key:
// This consists of a hash that considers the rust version // This consists of a hash that considers the rust version
// as well as all the environment variables as given by a default list // as well as all the environment variables as given by a default list
// and the `envVars` input. // and the `env-vars` input.
// The env vars are sorted, matched by prefix and hashed into the // The env vars are sorted, matched by prefix and hashed into the
// resulting environment hash. // resulting environment hash.
let hasher = external_crypto_default().createHash("sha1"); let hasher = external_crypto_default().createHash("sha1");
@ -61732,8 +61732,8 @@ class CacheConfig {
keyRust += ` (${rustVersion["commit-hash"]})`; keyRust += ` (${rustVersion["commit-hash"]})`;
self.keyRust = keyRust; self.keyRust = keyRust;
// these prefixes should cover most of the compiler / rust / cargo keys // these prefixes should cover most of the compiler / rust / cargo keys
const envPrefixes = ["CARGO", "CC", "CXX", "CMAKE", "RUST"]; const envPrefixes = ["CARGO", "CC", "CFLAGS", "CXX", "CMAKE", "RUST"];
envPrefixes.push(...lib_core.getInput("envVars").split(/\s+/).filter(Boolean)); envPrefixes.push(...lib_core.getInput("env-vars").split(/\s+/).filter(Boolean));
// sort the available env vars so we have a more stable hash // sort the available env vars so we have a more stable hash
const keyEnvs = []; const keyEnvs = [];
const envKeys = Object.keys(process.env); const envKeys = Object.keys(process.env);
@ -61781,7 +61781,7 @@ class CacheConfig {
const workspaces = []; const workspaces = [];
const workspacesInput = lib_core.getInput("workspaces") || "."; const workspacesInput = lib_core.getInput("workspaces") || ".";
for (const workspace of workspacesInput.trim().split("\n")) { for (const workspace of workspacesInput.trim().split("\n")) {
let [root, target = "target"] = workspace.split(" -> "); let [root, target = "target"] = workspace.split("->").map((s) => s.trim());
root = external_path_default().resolve(root); root = external_path_default().resolve(root);
target = external_path_default().join(root, target); target = external_path_default().join(root, target);
workspaces.push(new Workspace(root, target)); workspaces.push(new Workspace(root, target));
@ -61859,8 +61859,8 @@ async function cleanTargetDir(targetDir, packages) {
} }
} }
async function cleanProfileTarget(profileDir, packages) { async function cleanProfileTarget(profileDir, packages) {
await lib_io.rmRF(external_path_default().join(profileDir, "examples")); await rmRF(external_path_default().join(profileDir, "examples"));
await lib_io.rmRF(external_path_default().join(profileDir, "incremental")); await rmRF(external_path_default().join(profileDir, "incremental"));
let dir; let dir;
// remove all *files* from the profile directory // remove all *files* from the profile directory
dir = await external_fs_default().promises.opendir(profileDir); dir = await external_fs_default().promises.opendir(profileDir);
@ -61911,8 +61911,7 @@ async function cleanBin() {
async function cleanRegistry(packages) { async function cleanRegistry(packages) {
// `.cargo/registry/src` // `.cargo/registry/src`
// we can remove this completely, as cargo will recreate this from `cache` // we can remove this completely, as cargo will recreate this from `cache`
const srcDir = path.join(CARGO_HOME, "registry", "src"); await rmRF(path.join(CARGO_HOME, "registry", "src"));
await io.rmRF(srcDir);
// `.cargo/registry/index` // `.cargo/registry/index`
const indexDir = await fs.promises.opendir(path.join(CARGO_HOME, "registry", "index")); const indexDir = await fs.promises.opendir(path.join(CARGO_HOME, "registry", "index"));
for await (const dirent of indexDir) { for await (const dirent of indexDir) {
@ -61922,7 +61921,7 @@ async function cleanRegistry(packages) {
const dir = await fs.promises.opendir(path.join(indexDir.path, dirent.name)); const dir = await fs.promises.opendir(path.join(indexDir.path, dirent.name));
// for a git registry, we can remove `.cache`, as cargo will recreate it from git // for a git registry, we can remove `.cache`, as cargo will recreate it from git
if (await exists(path.join(dir.path, ".git"))) { if (await exists(path.join(dir.path, ".git"))) {
await io.rmRF(path.join(dir.path, ".cache")); await rmRF(path.join(dir.path, ".cache"));
} }
// TODO: else, clean `.cache` based on the `packages` // TODO: else, clean `.cache` based on the `packages`
} }
@ -62015,11 +62014,15 @@ async function rm(parent, dirent) {
await external_fs_default().promises.unlink(fileName); await external_fs_default().promises.unlink(fileName);
} }
else if (dirent.isDirectory()) { else if (dirent.isDirectory()) {
await lib_io.rmRF(fileName); await io.rmRF(fileName);
} }
} }
catch { } catch { }
} }
async function rmRF(dirName) {
lib_core.debug(`deleting "${dirName}"`);
await io.rmRF(dirName);
}
async function exists(path) { async function exists(path) {
try { try {
await external_fs_default().promises.access(path); await external_fs_default().promises.access(path);

25
dist/save/index.js vendored
View file

@ -61700,10 +61700,10 @@ class CacheConfig {
static async new() { static async new() {
const self = new CacheConfig(); const self = new CacheConfig();
// Construct key prefix: // Construct key prefix:
// This uses either the `sharedKey` 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 = `v0-rust`;
const sharedKey = core.getInput("sharedKey"); const sharedKey = core.getInput("shared-key");
if (sharedKey) { if (sharedKey) {
key += `-${sharedKey}`; key += `-${sharedKey}`;
} }
@ -61721,7 +61721,7 @@ class CacheConfig {
// Construct environment portion of the key: // Construct environment portion of the key:
// This consists of a hash that considers the rust version // This consists of a hash that considers the rust version
// as well as all the environment variables as given by a default list // as well as all the environment variables as given by a default list
// and the `envVars` input. // and the `env-vars` input.
// The env vars are sorted, matched by prefix and hashed into the // The env vars are sorted, matched by prefix and hashed into the
// resulting environment hash. // resulting environment hash.
let hasher = external_crypto_default().createHash("sha1"); let hasher = external_crypto_default().createHash("sha1");
@ -61732,8 +61732,8 @@ class CacheConfig {
keyRust += ` (${rustVersion["commit-hash"]})`; keyRust += ` (${rustVersion["commit-hash"]})`;
self.keyRust = keyRust; self.keyRust = keyRust;
// these prefixes should cover most of the compiler / rust / cargo keys // these prefixes should cover most of the compiler / rust / cargo keys
const envPrefixes = ["CARGO", "CC", "CXX", "CMAKE", "RUST"]; const envPrefixes = ["CARGO", "CC", "CFLAGS", "CXX", "CMAKE", "RUST"];
envPrefixes.push(...core.getInput("envVars").split(/\s+/).filter(Boolean)); envPrefixes.push(...core.getInput("env-vars").split(/\s+/).filter(Boolean));
// sort the available env vars so we have a more stable hash // sort the available env vars so we have a more stable hash
const keyEnvs = []; const keyEnvs = [];
const envKeys = Object.keys(process.env); const envKeys = Object.keys(process.env);
@ -61781,7 +61781,7 @@ class CacheConfig {
const workspaces = []; const workspaces = [];
const workspacesInput = core.getInput("workspaces") || "."; const workspacesInput = core.getInput("workspaces") || ".";
for (const workspace of workspacesInput.trim().split("\n")) { for (const workspace of workspacesInput.trim().split("\n")) {
let [root, target = "target"] = workspace.split(" -> "); let [root, target = "target"] = workspace.split("->").map((s) => s.trim());
root = external_path_default().resolve(root); root = external_path_default().resolve(root);
target = external_path_default().join(root, target); target = external_path_default().join(root, target);
workspaces.push(new Workspace(root, target)); workspaces.push(new Workspace(root, target));
@ -61859,8 +61859,8 @@ async function cleanTargetDir(targetDir, packages) {
} }
} }
async function cleanProfileTarget(profileDir, packages) { async function cleanProfileTarget(profileDir, packages) {
await io.rmRF(external_path_default().join(profileDir, "examples")); await rmRF(external_path_default().join(profileDir, "examples"));
await io.rmRF(external_path_default().join(profileDir, "incremental")); await rmRF(external_path_default().join(profileDir, "incremental"));
let dir; let dir;
// remove all *files* from the profile directory // remove all *files* from the profile directory
dir = await external_fs_default().promises.opendir(profileDir); dir = await external_fs_default().promises.opendir(profileDir);
@ -61911,8 +61911,7 @@ async function cleanBin() {
async function cleanRegistry(packages) { async function cleanRegistry(packages) {
// `.cargo/registry/src` // `.cargo/registry/src`
// we can remove this completely, as cargo will recreate this from `cache` // we can remove this completely, as cargo will recreate this from `cache`
const srcDir = external_path_default().join(CARGO_HOME, "registry", "src"); await rmRF(external_path_default().join(CARGO_HOME, "registry", "src"));
await io.rmRF(srcDir);
// `.cargo/registry/index` // `.cargo/registry/index`
const indexDir = await external_fs_default().promises.opendir(external_path_default().join(CARGO_HOME, "registry", "index")); const indexDir = await external_fs_default().promises.opendir(external_path_default().join(CARGO_HOME, "registry", "index"));
for await (const dirent of indexDir) { for await (const dirent of indexDir) {
@ -61922,7 +61921,7 @@ async function cleanRegistry(packages) {
const dir = await external_fs_default().promises.opendir(external_path_default().join(indexDir.path, dirent.name)); const dir = await external_fs_default().promises.opendir(external_path_default().join(indexDir.path, dirent.name));
// for a git registry, we can remove `.cache`, as cargo will recreate it from git // for a git registry, we can remove `.cache`, as cargo will recreate it from git
if (await exists(external_path_default().join(dir.path, ".git"))) { if (await exists(external_path_default().join(dir.path, ".git"))) {
await io.rmRF(external_path_default().join(dir.path, ".cache")); await rmRF(external_path_default().join(dir.path, ".cache"));
} }
// TODO: else, clean `.cache` based on the `packages` // TODO: else, clean `.cache` based on the `packages`
} }
@ -62020,6 +62019,10 @@ async function rm(parent, dirent) {
} }
catch { } catch { }
} }
async function rmRF(dirName) {
core.debug(`deleting "${dirName}"`);
await io.rmRF(dirName);
}
async function exists(path) { async function exists(path) {
try { try {
await external_fs_default().promises.access(path); await external_fs_default().promises.access(path);