extract lib in caching flow

pull/496/head
Frostebite 2023-02-13 15:48:54 +00:00
parent 22936b0af1
commit 57a2529026
3 changed files with 4 additions and 1 deletions

1
dist/index.js generated vendored
View File

@ -4385,6 +4385,7 @@ class Caching {
return __awaiter(this, void 0, void 0, function* () {
cloud_runner_logger_1.default.log(`Pulling from cache ${destinationFolder}`);
if (cloud_runner_1.default.buildParameters.cloudRunnerDebugSkipCache) {
cloud_runner_logger_1.default.log(`Skipping cache debugSkipCache is true`);
return;
}
cacheArtifactName = cacheArtifactName.replace(' ', '');

2
dist/index.js.map generated vendored

File diff suppressed because one or more lines are too long

View File

@ -105,6 +105,8 @@ export class Caching {
public static async PullFromCache(cacheFolder: string, destinationFolder: string, cacheArtifactName: string = ``) {
CloudRunnerLogger.log(`Pulling from cache ${destinationFolder}`);
if (CloudRunner.buildParameters.cloudRunnerDebugSkipCache) {
CloudRunnerLogger.log(`Skipping cache debugSkipCache is true`);
return;
}
cacheArtifactName = cacheArtifactName.replace(' ', '');