K8s task loop, fail early

pull/496/head
Frostebite 2023-02-09 21:49:28 +00:00
parent 2c80fce95d
commit 00e8115d1a
4 changed files with 11 additions and 1 deletions

View File

@ -80,6 +80,8 @@ jobs:
cloudRunnerTests: true
versioning: None
CLOUD_RUNNER_CLUSTER: ${{ matrix.cloudRunnerCluster }}
- name: Jest Github Action Reporter
uses: IgnusG/jest-report-action@v2.3.3
localBuildTests:
name: Local Build Target Tests
runs-on: ubuntu-latest

4
dist/index.js generated vendored
View File

@ -6219,10 +6219,14 @@ class BuildAutomationWorkflow {
n 16.15.1 > /dev/null
npm --version
node --version
echo "test 1"
${BuildAutomationWorkflow.TreeCommand}
echo "test 2"
${setupHooks.filter((x) => x.hook.includes(`before`)).map((x) => x.commands) || ' '}
echo "test 3"
export GITHUB_WORKSPACE="${cloud_runner_folders_1.CloudRunnerFolders.ToLinuxFolder(cloud_runner_folders_1.CloudRunnerFolders.repoPathAbsolute)}"
${BuildAutomationWorkflow.setupCommands(builderPath)}
echo "test 4"
${setupHooks.filter((x) => x.hook.includes(`after`)).map((x) => x.commands) || ' '}
${BuildAutomationWorkflow.TreeCommand}
${buildHooks.filter((x) => x.hook.includes(`before`)).map((x) => x.commands) || ' '}

2
dist/index.js.map generated vendored

File diff suppressed because one or more lines are too long

View File

@ -73,10 +73,14 @@ export class BuildAutomationWorkflow implements WorkflowInterface {
n 16.15.1 > /dev/null
npm --version
node --version
echo "test 1"
${BuildAutomationWorkflow.TreeCommand}
echo "test 2"
${setupHooks.filter((x) => x.hook.includes(`before`)).map((x) => x.commands) || ' '}
echo "test 3"
export GITHUB_WORKSPACE="${CloudRunnerFolders.ToLinuxFolder(CloudRunnerFolders.repoPathAbsolute)}"
${BuildAutomationWorkflow.setupCommands(builderPath)}
echo "test 4"
${setupHooks.filter((x) => x.hook.includes(`after`)).map((x) => x.commands) || ' '}
${BuildAutomationWorkflow.TreeCommand}
${buildHooks.filter((x) => x.hook.includes(`before`)).map((x) => x.commands) || ' '}