AWS BASE STACK for tests
parent
d9ef43701e
commit
aa7cb2a59b
|
|
@ -3990,6 +3990,7 @@ class Caching {
|
|||
cacheArtifactName = cacheArtifactName.replace(' ', '');
|
||||
const startPath = process.cwd();
|
||||
const compressionSuffix = cloud_runner_1.default.buildParameters.useLz4Compression ? '.lz4' : '';
|
||||
cloud_runner_logger_1.default.log(`Compression: ${compressionSuffix}`);
|
||||
try {
|
||||
if (!(yield fileExists(cacheFolder))) {
|
||||
yield cloud_runner_system_1.CloudRunnerSystem.Run(`mkdir -p ${cacheFolder}`);
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -47,6 +47,7 @@ export class Caching {
|
|||
cacheArtifactName = cacheArtifactName.replace(' ', '');
|
||||
const startPath = process.cwd();
|
||||
const compressionSuffix = CloudRunner.buildParameters.useLz4Compression ? '.lz4' : '';
|
||||
CloudRunnerLogger.log(`Compression: ${compressionSuffix}`);
|
||||
try {
|
||||
if (!(await fileExists(cacheFolder))) {
|
||||
await CloudRunnerSystem.Run(`mkdir -p ${cacheFolder}`);
|
||||
|
|
|
|||
Loading…
Reference in New Issue