cleanup local pipeline, log aws formation
parent
eb76d1bd1f
commit
3fd4d8666f
|
|
@ -865,7 +865,7 @@ class CloudRunnerOptions {
|
||||||
return (CloudRunnerOptions.getInput(`watchToEnd`) || !CloudRunnerOptions.asyncCloudRunner || true) !== false;
|
return (CloudRunnerOptions.getInput(`watchToEnd`) || !CloudRunnerOptions.asyncCloudRunner || true) !== false;
|
||||||
}
|
}
|
||||||
static get asyncCloudRunner() {
|
static get asyncCloudRunner() {
|
||||||
return CloudRunnerOptions.getInput('asyncCloudRunner') === true || false;
|
return (CloudRunnerOptions.getInput('asyncCloudRunner') || `false`) === `true` || false;
|
||||||
}
|
}
|
||||||
static get useSharedLargePackages() {
|
static get useSharedLargePackages() {
|
||||||
return (CloudRunnerOptions.getInput(`useSharedLargePackages`) || 'false') === 'true';
|
return (CloudRunnerOptions.getInput(`useSharedLargePackages`) || 'false') === 'true';
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -239,7 +239,7 @@ class CloudRunnerOptions {
|
||||||
}
|
}
|
||||||
|
|
||||||
static get asyncCloudRunner(): boolean {
|
static get asyncCloudRunner(): boolean {
|
||||||
return CloudRunnerOptions.getInput('asyncCloudRunner') === true || false;
|
return (CloudRunnerOptions.getInput('asyncCloudRunner') || `false`) === `true` || false;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static get useSharedLargePackages(): boolean {
|
public static get useSharedLargePackages(): boolean {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue