Debug cache extract
parent
1785f41484
commit
dfcc5cfde8
|
|
@ -615,7 +615,7 @@ class Caching {
|
||||||
remote_client_logger_1.RemoteClientLogger.log(`cache item exists ${cacheFolder}/${cacheSelection}.zip`);
|
remote_client_logger_1.RemoteClientLogger.log(`cache item exists ${cacheFolder}/${cacheSelection}.zip`);
|
||||||
console_1.assert(`${fs_1.default.existsSync(destinationFolder)}`);
|
console_1.assert(`${fs_1.default.existsSync(destinationFolder)}`);
|
||||||
console_1.assert(`${fs_1.default.existsSync(`${cacheSelection}.zip`)}`);
|
console_1.assert(`${fs_1.default.existsSync(`${cacheSelection}.zip`)}`);
|
||||||
const fullDestination = path_1.default.join(process.cwd(), path_1.default.basename(destinationFolder), `results`);
|
const fullDestination = path_1.default.join(destinationFolder, `results`);
|
||||||
if (__1.Input.cloudRunnerTests) {
|
if (__1.Input.cloudRunnerTests) {
|
||||||
yield cloud_runner_system_1.CloudRunnerSystem.Run(`tree ${cacheFolder}`);
|
yield cloud_runner_system_1.CloudRunnerSystem.Run(`tree ${cacheFolder}`);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -100,7 +100,7 @@ export class Caching {
|
||||||
RemoteClientLogger.log(`cache item exists ${cacheFolder}/${cacheSelection}.zip`);
|
RemoteClientLogger.log(`cache item exists ${cacheFolder}/${cacheSelection}.zip`);
|
||||||
assert(`${fs.existsSync(destinationFolder)}`);
|
assert(`${fs.existsSync(destinationFolder)}`);
|
||||||
assert(`${fs.existsSync(`${cacheSelection}.zip`)}`);
|
assert(`${fs.existsSync(`${cacheSelection}.zip`)}`);
|
||||||
const fullDestination = path.join(process.cwd(), path.basename(destinationFolder), `results`);
|
const fullDestination = path.join(destinationFolder, `results`);
|
||||||
if (Input.cloudRunnerTests) {
|
if (Input.cloudRunnerTests) {
|
||||||
await CloudRunnerSystem.Run(`tree ${cacheFolder}`);
|
await CloudRunnerSystem.Run(`tree ${cacheFolder}`);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue