Skip to content
This repository has been archived by the owner on Oct 11, 2024. It is now read-only.

Commit

Permalink
let us go
Browse files Browse the repository at this point in the history
  • Loading branch information
andy-neuma committed Jul 2, 2024
1 parent e2b5f61 commit 6d5ab1b
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/nm-build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ jobs:
echo "label: ${{ matrix.test_config.label }}"
echo "tests: ${{ matrix.test_config.test }}"
BUILD:
Bu:
needs: [JSON-VALIDATE]
uses: ./.github/workflows/nm-build.yml
with:
Expand All @@ -117,19 +117,22 @@ jobs:
secrets: inherit

Te:
needs: [BUILD]
needs: [Bu]
strategy:
fail-fast: false
matrix:
job-partition: ${{ fromJson(needs.BUILD.outputs.job-partitions) }}
test-config: ${{ fromJson(inputs.test_configs ) }}
job-partition: ${{ fromJson(needs.Bu.outputs.job-partitions) }}

runs-on: gcp-k8s-util
timeout-minutes: 16
timeout-minutes: ${{ inputs.test_timeout }}

steps:

- name: take a look
run: |
echo "label: ${{ matrix.test-config.label }}"
echo "python: ${{ matrix.test-config.python }}"
echo "tests: ${{ matrix.job-partition }}"
# TEST:
Expand Down

0 comments on commit 6d5ab1b

Please sign in to comment.