mirror of
https://code.forgejo.org/actions/cache.git
synced 2024-11-05 02:02:53 +01:00
eb78578266
* Allow for multiple line-delimited paths to cache * Add initial minimatch support * Use @actions/glob for pattern matching * Cache multiple entries using --files-from tar input remove known failing test Quote tar paths Add salt to test cache Try reading input files from manifest bump salt Run test on macos more testing Run caching tests on 3 platforms Run tests on self-hosted Apparently cant reference hosted runners by name Bump salt wait for some time after save more timing out smarter waiting Cache in tmp dir that won't be deleted Use child_process instead of actions/exec Revert tempDir hack bump salt more logging More console logging Use filepath to with cacheHttpClient Test cache restoration Revert temp dir hack debug logging clean up cache.yml testing Bump salt change debug output build actions * unit test coverage for caching multiple dirs * Ensure there's a locateable test folder at homedir * Clean up code * Version cache with all inputs * Unit test getCacheVersion * Include keys in getCacheEntry request * Clean import orders * Use fs promises in actionUtils tests * Update import order for to fix linter errors * Fix remaining linter error * Remove platform-specific test code * Add lerna example for caching multiple dirs * Lerna example updated to v2 Co-Authored-By: Josh Gross <joshmgross@github.com> Co-authored-by: Josh Gross <joshmgross@github.com>
117 lines
3.6 KiB
TypeScript
117 lines
3.6 KiB
TypeScript
import * as core from "@actions/core";
|
|
import * as path from "path";
|
|
|
|
import * as cacheHttpClient from "./cacheHttpClient";
|
|
import { Events, Inputs, State } from "./constants";
|
|
import { extractTar } from "./tar";
|
|
import * as utils from "./utils/actionUtils";
|
|
|
|
async function run(): Promise<void> {
|
|
try {
|
|
// Validate inputs, this can cause task failure
|
|
if (!utils.isValidEvent()) {
|
|
utils.logWarning(
|
|
`Event Validation Error: The event type ${
|
|
process.env[Events.Key]
|
|
} is not supported. Only ${utils
|
|
.getSupportedEvents()
|
|
.join(", ")} events are supported at this time.`
|
|
);
|
|
return;
|
|
}
|
|
|
|
const primaryKey = core.getInput(Inputs.Key, { required: true });
|
|
core.saveState(State.CacheKey, primaryKey);
|
|
|
|
const restoreKeys = core
|
|
.getInput(Inputs.RestoreKeys)
|
|
.split("\n")
|
|
.filter(x => x !== "");
|
|
const keys = [primaryKey, ...restoreKeys];
|
|
|
|
core.debug("Resolved Keys:");
|
|
core.debug(JSON.stringify(keys));
|
|
|
|
if (keys.length > 10) {
|
|
core.setFailed(
|
|
`Key Validation Error: Keys are limited to a maximum of 10.`
|
|
);
|
|
return;
|
|
}
|
|
for (const key of keys) {
|
|
if (key.length > 512) {
|
|
core.setFailed(
|
|
`Key Validation Error: ${key} cannot be larger than 512 characters.`
|
|
);
|
|
return;
|
|
}
|
|
const regex = /^[^,]*$/;
|
|
if (!regex.test(key)) {
|
|
core.setFailed(
|
|
`Key Validation Error: ${key} cannot contain commas.`
|
|
);
|
|
return;
|
|
}
|
|
}
|
|
|
|
try {
|
|
const cacheEntry = await cacheHttpClient.getCacheEntry(keys);
|
|
if (!cacheEntry?.archiveLocation) {
|
|
core.info(`Cache not found for input keys: ${keys.join(", ")}`);
|
|
return;
|
|
}
|
|
|
|
const archivePath = path.join(
|
|
await utils.createTempDirectory(),
|
|
"cache.tgz"
|
|
);
|
|
core.debug(`Archive Path: ${archivePath}`);
|
|
|
|
// Store the cache result
|
|
utils.setCacheState(cacheEntry);
|
|
|
|
try {
|
|
// Download the cache from the cache entry
|
|
await cacheHttpClient.downloadCache(
|
|
cacheEntry.archiveLocation,
|
|
archivePath
|
|
);
|
|
|
|
const archiveFileSize = utils.getArchiveFileSize(archivePath);
|
|
core.info(
|
|
`Cache Size: ~${Math.round(
|
|
archiveFileSize / (1024 * 1024)
|
|
)} MB (${archiveFileSize} B)`
|
|
);
|
|
|
|
await extractTar(archivePath);
|
|
} finally {
|
|
// Try to delete the archive to save space
|
|
try {
|
|
await utils.unlinkFile(archivePath);
|
|
} catch (error) {
|
|
core.debug(`Failed to delete archive: ${error}`);
|
|
}
|
|
}
|
|
|
|
const isExactKeyMatch = utils.isExactKeyMatch(
|
|
primaryKey,
|
|
cacheEntry
|
|
);
|
|
utils.setCacheHitOutput(isExactKeyMatch);
|
|
|
|
core.info(
|
|
`Cache restored from key: ${cacheEntry && cacheEntry.cacheKey}`
|
|
);
|
|
} catch (error) {
|
|
utils.logWarning(error.message);
|
|
utils.setCacheHitOutput(false);
|
|
}
|
|
} catch (error) {
|
|
core.setFailed(error.message);
|
|
}
|
|
}
|
|
|
|
run();
|
|
|
|
export default run;
|