cleanup local pipeline, log aws formation
parent
e3b4e2a0e7
commit
65200e4abb
|
|
@ -130,7 +130,7 @@ jobs:
|
|||
cloudRunnerCluster: ${{ matrix.cloudRunnerCluster }}
|
||||
githubChecks: true
|
||||
asyncCloudRunner: true
|
||||
watchCloudRunnerToEnd: false
|
||||
watchToEnd: false
|
||||
localBuildTests:
|
||||
name: Local Build Target Tests
|
||||
runs-on: ubuntu-latest
|
||||
|
|
|
|||
|
|
@ -862,7 +862,10 @@ class CloudRunnerOptions {
|
|||
return CloudRunnerOptions.getInput(`cloudRunnerDebugEnv`) || false;
|
||||
}
|
||||
static get watchCloudRunnerToEnd() {
|
||||
return CloudRunnerOptions.getInput(`watchToEnd`) || !CloudRunnerOptions.asyncCloudRunner;
|
||||
if (CloudRunnerOptions.asyncCloudRunner) {
|
||||
return false;
|
||||
}
|
||||
return CloudRunnerOptions.getInput(`watchToEnd`) || true;
|
||||
}
|
||||
static get asyncCloudRunner() {
|
||||
return (CloudRunnerOptions.getInput('asyncCloudRunner') || `false`) === `true` || false;
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -235,7 +235,11 @@ class CloudRunnerOptions {
|
|||
}
|
||||
|
||||
static get watchCloudRunnerToEnd(): boolean {
|
||||
return CloudRunnerOptions.getInput(`watchToEnd`) || !CloudRunnerOptions.asyncCloudRunner;
|
||||
if (CloudRunnerOptions.asyncCloudRunner) {
|
||||
return false;
|
||||
}
|
||||
|
||||
return CloudRunnerOptions.getInput(`watchToEnd`) || true;
|
||||
}
|
||||
|
||||
static get asyncCloudRunner(): boolean {
|
||||
|
|
|
|||
Loading…
Reference in New Issue