AWS BASE STACK for tests
parent
08cfef6039
commit
514a706376
|
|
@ -868,13 +868,13 @@ class CloudRunnerOptions {
|
||||||
return CloudRunnerOptions.getInput('asyncCloudRunner') || false;
|
return CloudRunnerOptions.getInput('asyncCloudRunner') || false;
|
||||||
}
|
}
|
||||||
static get useSharedLargePackages() {
|
static get useSharedLargePackages() {
|
||||||
return (CloudRunnerOptions.getInput(`useSharedLargePackages`) || 'false') !== 'false';
|
return (CloudRunnerOptions.getInput(`useSharedLargePackages`) || 'false') === 'true';
|
||||||
}
|
}
|
||||||
static get useSharedBuilder() {
|
static get useSharedBuilder() {
|
||||||
return (CloudRunnerOptions.getInput(`useSharedBuilder`) || 'true') !== 'false';
|
return (CloudRunnerOptions.getInput(`useSharedBuilder`) || 'true') === 'true';
|
||||||
}
|
}
|
||||||
static get useLz4Compression() {
|
static get useLz4Compression() {
|
||||||
return (CloudRunnerOptions.getInput(`useLz4Compression`) || 'false') !== 'false';
|
return (CloudRunnerOptions.getInput(`useLz4Compression`) || 'false') === 'true';
|
||||||
}
|
}
|
||||||
// ### ### ###
|
// ### ### ###
|
||||||
// Retained Workspace
|
// Retained Workspace
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -243,15 +243,15 @@ class CloudRunnerOptions {
|
||||||
}
|
}
|
||||||
|
|
||||||
public static get useSharedLargePackages(): boolean {
|
public static get useSharedLargePackages(): boolean {
|
||||||
return (CloudRunnerOptions.getInput(`useSharedLargePackages`) || 'false') !== 'false';
|
return (CloudRunnerOptions.getInput(`useSharedLargePackages`) || 'false') === 'true';
|
||||||
}
|
}
|
||||||
|
|
||||||
public static get useSharedBuilder(): boolean {
|
public static get useSharedBuilder(): boolean {
|
||||||
return (CloudRunnerOptions.getInput(`useSharedBuilder`) || 'true') !== 'false';
|
return (CloudRunnerOptions.getInput(`useSharedBuilder`) || 'true') === 'true';
|
||||||
}
|
}
|
||||||
|
|
||||||
public static get useLz4Compression(): boolean {
|
public static get useLz4Compression(): boolean {
|
||||||
return (CloudRunnerOptions.getInput(`useLz4Compression`) || 'false') !== 'false';
|
return (CloudRunnerOptions.getInput(`useLz4Compression`) || 'false') === 'true';
|
||||||
}
|
}
|
||||||
|
|
||||||
// ### ### ###
|
// ### ### ###
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue