K8s task loop, fail early
parent
2c80fce95d
commit
00e8115d1a
|
@ -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
|
||||
|
|
|
@ -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) || ' '}
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -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) || ' '}
|
||||
|
|
Loading…
Reference in New Issue