cleanup local pipeline, log aws formation
parent
e3b4e2a0e7
commit
65200e4abb
|
|
@ -130,7 +130,7 @@ jobs:
|
||||||
cloudRunnerCluster: ${{ matrix.cloudRunnerCluster }}
|
cloudRunnerCluster: ${{ matrix.cloudRunnerCluster }}
|
||||||
githubChecks: true
|
githubChecks: true
|
||||||
asyncCloudRunner: true
|
asyncCloudRunner: true
|
||||||
watchCloudRunnerToEnd: false
|
watchToEnd: false
|
||||||
localBuildTests:
|
localBuildTests:
|
||||||
name: Local Build Target Tests
|
name: Local Build Target Tests
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
|
||||||
|
|
@ -862,7 +862,10 @@ class CloudRunnerOptions {
|
||||||
return CloudRunnerOptions.getInput(`cloudRunnerDebugEnv`) || false;
|
return CloudRunnerOptions.getInput(`cloudRunnerDebugEnv`) || false;
|
||||||
}
|
}
|
||||||
static get watchCloudRunnerToEnd() {
|
static get watchCloudRunnerToEnd() {
|
||||||
return CloudRunnerOptions.getInput(`watchToEnd`) || !CloudRunnerOptions.asyncCloudRunner;
|
if (CloudRunnerOptions.asyncCloudRunner) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return CloudRunnerOptions.getInput(`watchToEnd`) || true;
|
||||||
}
|
}
|
||||||
static get asyncCloudRunner() {
|
static get asyncCloudRunner() {
|
||||||
return (CloudRunnerOptions.getInput('asyncCloudRunner') || `false`) === `true` || false;
|
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 {
|
static get watchCloudRunnerToEnd(): boolean {
|
||||||
return CloudRunnerOptions.getInput(`watchToEnd`) || !CloudRunnerOptions.asyncCloudRunner;
|
if (CloudRunnerOptions.asyncCloudRunner) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
return CloudRunnerOptions.getInput(`watchToEnd`) || true;
|
||||||
}
|
}
|
||||||
|
|
||||||
static get asyncCloudRunner(): boolean {
|
static get asyncCloudRunner(): boolean {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue