AWS BASE STACK for tests

pull/479/head
Frostebite 2022-12-09 22:33:09 +00:00
parent d9ef43701e
commit aa7cb2a59b
3 changed files with 3 additions and 1 deletions

1
dist/index.js vendored
View File

@ -3990,6 +3990,7 @@ class Caching {
cacheArtifactName = cacheArtifactName.replace(' ', ''); cacheArtifactName = cacheArtifactName.replace(' ', '');
const startPath = process.cwd(); const startPath = process.cwd();
const compressionSuffix = cloud_runner_1.default.buildParameters.useLz4Compression ? '.lz4' : ''; const compressionSuffix = cloud_runner_1.default.buildParameters.useLz4Compression ? '.lz4' : '';
cloud_runner_logger_1.default.log(`Compression: ${compressionSuffix}`);
try { try {
if (!(yield fileExists(cacheFolder))) { if (!(yield fileExists(cacheFolder))) {
yield cloud_runner_system_1.CloudRunnerSystem.Run(`mkdir -p ${cacheFolder}`); yield cloud_runner_system_1.CloudRunnerSystem.Run(`mkdir -p ${cacheFolder}`);

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -47,6 +47,7 @@ export class Caching {
cacheArtifactName = cacheArtifactName.replace(' ', ''); cacheArtifactName = cacheArtifactName.replace(' ', '');
const startPath = process.cwd(); const startPath = process.cwd();
const compressionSuffix = CloudRunner.buildParameters.useLz4Compression ? '.lz4' : ''; const compressionSuffix = CloudRunner.buildParameters.useLz4Compression ? '.lz4' : '';
CloudRunnerLogger.log(`Compression: ${compressionSuffix}`);
try { try {
if (!(await fileExists(cacheFolder))) { if (!(await fileExists(cacheFolder))) {
await CloudRunnerSystem.Run(`mkdir -p ${cacheFolder}`); await CloudRunnerSystem.Run(`mkdir -p ${cacheFolder}`);