mirror of
https://github.com/Swatinem/rust-cache
synced 2025-08-05 12:50:26 +00:00
update registry cleaning
This commit is contained in:
parent
911d8e9e55
commit
7b8626742a
7 changed files with 188 additions and 212 deletions
144
dist/save/index.js
vendored
144
dist/save/index.js
vendored
|
@ -61587,16 +61587,16 @@ var cache = __nccwpck_require__(7799);
|
|||
var core = __nccwpck_require__(2186);
|
||||
// EXTERNAL MODULE: ./node_modules/@actions/exec/lib/exec.js
|
||||
var exec = __nccwpck_require__(1514);
|
||||
// EXTERNAL MODULE: ./node_modules/@actions/glob/lib/glob.js
|
||||
var glob = __nccwpck_require__(8090);
|
||||
// EXTERNAL MODULE: external "path"
|
||||
var external_path_ = __nccwpck_require__(1017);
|
||||
var external_path_default = /*#__PURE__*/__nccwpck_require__.n(external_path_);
|
||||
// EXTERNAL MODULE: ./node_modules/@actions/io/lib/io.js
|
||||
var io = __nccwpck_require__(7436);
|
||||
// EXTERNAL MODULE: external "fs"
|
||||
var external_fs_ = __nccwpck_require__(7147);
|
||||
var external_fs_default = /*#__PURE__*/__nccwpck_require__.n(external_fs_);
|
||||
// EXTERNAL MODULE: external "path"
|
||||
var external_path_ = __nccwpck_require__(1017);
|
||||
var external_path_default = /*#__PURE__*/__nccwpck_require__.n(external_path_);
|
||||
// EXTERNAL MODULE: ./node_modules/@actions/glob/lib/glob.js
|
||||
var glob = __nccwpck_require__(8090);
|
||||
// EXTERNAL MODULE: external "crypto"
|
||||
var external_crypto_ = __nccwpck_require__(6113);
|
||||
var external_crypto_default = /*#__PURE__*/__nccwpck_require__.n(external_crypto_);
|
||||
|
@ -61667,6 +61667,8 @@ class Workspace {
|
|||
|
||||
|
||||
|
||||
const HOME = external_os_default().homedir();
|
||||
const CARGO_HOME = process.env.CARGO_HOME || external_path_default().join(HOME, ".cargo");
|
||||
const STATE_LOCKFILE_HASH = "RUST_CACHE_LOCKFILE_HASH";
|
||||
const STATE_LOCKFILES = "RUST_CACHE_LOCKFILES";
|
||||
const STATE_BINS = "RUST_CACHE_BINS";
|
||||
|
@ -61679,14 +61681,6 @@ class CacheConfig {
|
|||
this.cacheKey = "";
|
||||
/** The secondary (restore) key that only contains the prefix and environment */
|
||||
this.restoreKey = "";
|
||||
/** The `~/.cargo` directory */
|
||||
this.cargoHome = "";
|
||||
/** The cargo registry index directory */
|
||||
this.cargoIndex = "";
|
||||
/** The cargo registry cache directory */
|
||||
this.cargoCache = "";
|
||||
/** The cargo git checkouts directory */
|
||||
this.cargoGit = "";
|
||||
/** The workspace configurations */
|
||||
this.workspaces = [];
|
||||
/** The prefix portion of the cache key */
|
||||
|
@ -61782,14 +61776,8 @@ class CacheConfig {
|
|||
self.keyFiles = keyFiles;
|
||||
key += `-${lockHash}`;
|
||||
self.cacheKey = key;
|
||||
// Constructs some generic paths, workspace config and paths to restore:
|
||||
// Constructs the workspace config and paths to restore:
|
||||
// The workspaces are given using a `$workspace -> $target` syntax.
|
||||
const home = external_os_default().homedir();
|
||||
const cargoHome = process.env.CARGO_HOME || external_path_default().join(home, ".cargo");
|
||||
self.cargoHome = cargoHome;
|
||||
self.cargoIndex = external_path_default().join(cargoHome, "registry/index");
|
||||
self.cargoCache = external_path_default().join(cargoHome, "registry/cache");
|
||||
self.cargoGit = external_path_default().join(cargoHome, "git");
|
||||
const workspaces = [];
|
||||
const workspacesInput = core.getInput("workspaces") || ".";
|
||||
for (const workspace of workspacesInput.trim().split("\n")) {
|
||||
|
@ -61799,15 +61787,7 @@ class CacheConfig {
|
|||
workspaces.push(new Workspace(root, target));
|
||||
}
|
||||
self.workspaces = workspaces;
|
||||
self.cachePaths = [
|
||||
external_path_default().join(cargoHome, "bin"),
|
||||
external_path_default().join(cargoHome, ".crates2.json"),
|
||||
external_path_default().join(cargoHome, ".crates.toml"),
|
||||
self.cargoIndex,
|
||||
self.cargoCache,
|
||||
self.cargoGit,
|
||||
...workspaces.map((ws) => ws.target),
|
||||
];
|
||||
self.cachePaths = [CARGO_HOME, ...workspaces.map((ws) => ws.target)];
|
||||
return self;
|
||||
}
|
||||
printInfo() {
|
||||
|
@ -61837,19 +61817,6 @@ class CacheConfig {
|
|||
}
|
||||
core.endGroup();
|
||||
}
|
||||
async getCargoBins() {
|
||||
const bins = new Set();
|
||||
try {
|
||||
const { installs } = JSON.parse(await external_fs_default().promises.readFile(external_path_default().join(this.cargoHome, ".crates2.json"), "utf8"));
|
||||
for (const pkg of Object.values(installs)) {
|
||||
for (const bin of pkg.bins) {
|
||||
bins.add(bin);
|
||||
}
|
||||
}
|
||||
}
|
||||
catch { }
|
||||
return bins;
|
||||
}
|
||||
}
|
||||
async function getRustVersion() {
|
||||
const stdout = await getCmdOutput("rustc", ["-vV"]);
|
||||
|
@ -61890,7 +61857,6 @@ async function cleanTargetDir(targetDir, packages) {
|
|||
await rm(dir.path, dirent);
|
||||
}
|
||||
}
|
||||
await external_fs_default().promises.unlink(external_path_default().join(targetDir, "./.rustc_info.json"));
|
||||
}
|
||||
async function cleanProfileTarget(profileDir, packages) {
|
||||
await io.rmRF(external_path_default().join(profileDir, "examples"));
|
||||
|
@ -61916,32 +61882,67 @@ async function cleanProfileTarget(profileDir, packages) {
|
|||
}));
|
||||
await rmExcept(external_path_default().join(profileDir, "deps"), keepDeps);
|
||||
}
|
||||
async function cleanBin(config) {
|
||||
const bins = await config.getCargoBins();
|
||||
async function getCargoBins() {
|
||||
const bins = new Set();
|
||||
try {
|
||||
const { installs } = JSON.parse(await external_fs_default().promises.readFile(external_path_default().join(CARGO_HOME, ".crates2.json"), "utf8"));
|
||||
for (const pkg of Object.values(installs)) {
|
||||
for (const bin of pkg.bins) {
|
||||
bins.add(bin);
|
||||
}
|
||||
}
|
||||
}
|
||||
catch { }
|
||||
return bins;
|
||||
}
|
||||
async function cleanBin() {
|
||||
const bins = await getCargoBins();
|
||||
const oldBins = JSON.parse(core.getState(STATE_BINS));
|
||||
for (const bin of oldBins) {
|
||||
bins.delete(bin);
|
||||
}
|
||||
const dir = await external_fs_default().promises.opendir(external_path_default().join(config.cargoHome, "bin"));
|
||||
const dir = await external_fs_default().promises.opendir(external_path_default().join(CARGO_HOME, "bin"));
|
||||
for await (const dirent of dir) {
|
||||
if (dirent.isFile() && !bins.has(dirent.name)) {
|
||||
await rm(dir.path, dirent);
|
||||
}
|
||||
}
|
||||
}
|
||||
async function cleanRegistry(config, registryName, packages) {
|
||||
await io.rmRF(external_path_default().join(config.cargoIndex, registryName, ".cache"));
|
||||
async function cleanRegistry(packages) {
|
||||
// `.cargo/registry/src`
|
||||
const srcDir = external_path_default().join(CARGO_HOME, "registry", "src");
|
||||
await io.rmRF(srcDir);
|
||||
// `.cargo/registry/index`
|
||||
const indexDir = await external_fs_default().promises.opendir(external_path_default().join(CARGO_HOME, "registry", "index"));
|
||||
for await (const dirent of indexDir) {
|
||||
if (dirent.isDirectory()) {
|
||||
// eg `.cargo/registry/index/github.com-1ecc6299db9ec823`
|
||||
// or `.cargo/registry/index/index.crates.io-e139d0d48fed7772`
|
||||
const dir = await external_fs_default().promises.opendir(external_path_default().join(indexDir.path, dirent.name));
|
||||
// TODO: check for `.git` etc, for now we just always remove the `.cache`
|
||||
// and leave other stuff untouched.
|
||||
await io.rmRF(external_path_default().join(dir.path, ".cache"));
|
||||
}
|
||||
}
|
||||
const pkgSet = new Set(packages.map((p) => `${p.name}-${p.version}.crate`));
|
||||
const dir = await external_fs_default().promises.opendir(external_path_default().join(config.cargoCache, registryName));
|
||||
for await (const dirent of dir) {
|
||||
if (dirent.isFile() && !pkgSet.has(dirent.name)) {
|
||||
await rm(dir.path, dirent);
|
||||
// `.cargo/registry/cache`
|
||||
const cacheDir = await external_fs_default().promises.opendir(external_path_default().join(CARGO_HOME, "registry", "cache"));
|
||||
for await (const dirent of cacheDir) {
|
||||
if (dirent.isDirectory()) {
|
||||
// eg `.cargo/registry/cache/github.com-1ecc6299db9ec823`
|
||||
// or `.cargo/registry/cache/index.crates.io-e139d0d48fed7772`
|
||||
const dir = await external_fs_default().promises.opendir(external_path_default().join(cacheDir.path, dirent.name));
|
||||
for await (const dirent of dir) {
|
||||
if (dirent.isFile() && !pkgSet.has(dirent.name)) {
|
||||
await rm(dir.path, dirent);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
async function cleanGit(config, packages) {
|
||||
const coPath = external_path_default().join(config.cargoGit, "checkouts");
|
||||
const dbPath = external_path_default().join(config.cargoGit, "db");
|
||||
async function cleanGit(packages) {
|
||||
const coPath = external_path_default().join(CARGO_HOME, "git", "checkouts");
|
||||
const dbPath = external_path_default().join(CARGO_HOME, "git", "db");
|
||||
const repos = new Map();
|
||||
for (const p of packages) {
|
||||
if (!p.path.startsWith(coPath)) {
|
||||
|
@ -62031,8 +62032,6 @@ async function exists(path) {
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
process.on("uncaughtException", (e) => {
|
||||
core.info(`[warning] ${e.message}`);
|
||||
if (e.stack) {
|
||||
|
@ -62065,26 +62064,23 @@ async function run() {
|
|||
core.info(`[warning] ${e.stack}`);
|
||||
}
|
||||
}
|
||||
const registryName = await getRegistryName(config);
|
||||
if (registryName) {
|
||||
try {
|
||||
core.info(`... Cleaning cargo registry ...`);
|
||||
await cleanRegistry(config, registryName, allPackages);
|
||||
}
|
||||
catch (e) {
|
||||
core.info(`[warning] ${e.stack}`);
|
||||
}
|
||||
try {
|
||||
core.info(`... Cleaning cargo registry ...`);
|
||||
await cleanRegistry(allPackages);
|
||||
}
|
||||
catch (e) {
|
||||
core.info(`[warning] ${e.stack}`);
|
||||
}
|
||||
try {
|
||||
core.info(`... Cleaning cargo/bin ...`);
|
||||
await cleanBin(config);
|
||||
await cleanBin();
|
||||
}
|
||||
catch (e) {
|
||||
core.info(`[warning] ${e.stack}`);
|
||||
}
|
||||
try {
|
||||
core.info(`... Cleaning cargo git cache ...`);
|
||||
await cleanGit(config, allPackages);
|
||||
await cleanGit(allPackages);
|
||||
}
|
||||
catch (e) {
|
||||
core.info(`[warning] ${e.stack}`);
|
||||
|
@ -62097,18 +62093,6 @@ async function run() {
|
|||
}
|
||||
}
|
||||
run();
|
||||
async function getRegistryName(config) {
|
||||
const globber = await glob.create(`${config.cargoIndex}/**/.last-updated`, { followSymbolicLinks: false });
|
||||
const files = await globber.glob();
|
||||
if (files.length > 1) {
|
||||
core.warning(`got multiple registries: "${files.join('", "')}"`);
|
||||
}
|
||||
const first = files.shift();
|
||||
if (!first) {
|
||||
return null;
|
||||
}
|
||||
return external_path_default().basename(external_path_default().dirname(first));
|
||||
}
|
||||
async function macOsWorkaround() {
|
||||
try {
|
||||
// Workaround for https://github.com/actions/cache/issues/403
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue