Skip to content

Commit 39811b3

Browse files
committed
fix
1 parent 1507030 commit 39811b3

File tree

2 files changed

+13
-10
lines changed

2 files changed

+13
-10
lines changed

.github/workflows/test-chart-version-nightly-template.yaml

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -65,14 +65,6 @@ permissions:
6565
contents: read
6666

6767
jobs:
68-
validation:
69-
name: Camunda ${{ inputs.camunda-version }} - Validation
70-
uses: ./.github/workflows/chart-validate-template.yaml
71-
with:
72-
identifier: "${{ inputs.case }}-${{ inputs.scenario }}-vald-${{ inputs.camunda-version }}-${{ inputs.auth }}-${{ inputs.exclude }}"
73-
camunda-helm-dir: "camunda-platform-${{ inputs.camunda-version }}"
74-
camunda-helm-git-ref: "${{ github.event.pull_request.head.sha }}"
75-
7668
parse-platforms:
7769
name: Parse platforms
7870
runs-on: ubuntu-latest
@@ -90,7 +82,7 @@ jobs:
9082
9183
integration:
9284
name: ${{ matrix.platform }} - ITs
93-
needs: [validation, parse-platforms]
85+
needs: [parse-platforms]
9486
permissions:
9587
contents: read
9688
id-token: write

.github/workflows/test-chart-version-nightly.yaml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,21 @@ jobs:
6464
id: generate-chart-versions
6565
uses: ./.github/actions/generate-chart-matrix-nightly
6666

67+
validation:
68+
name: Camunda ${{ inputs.camunda-version }} - Validation
69+
uses: ./.github/workflows/chart-validate-template.yaml
70+
strategy:
71+
fail-fast: false
72+
matrix: ${{ fromJson(needs.init.outputs.matrix) }}
73+
with:
74+
identifier: "${{ matrix.case }}-vald-${{ matrix.shortname }}-${{ matrix.version }}-${{ matrix.auth }}-${{ matrix.exclude }}"
75+
camunda-helm-dir: "camunda-platform-${{ inputs.camunda-version }}"
76+
camunda-helm-git-ref: "${{ github.event.pull_request.head.sha }}"
77+
6778
integation-tests:
6879
name: ${{ matrix.version }} - ${{ inputs.platforms || 'gke' }} - ${{ matrix.case }} - ${{ matrix.shortname }}
6980
if: ${{ needs.init.outputs.matrix != '[]' }}
70-
needs: [init]
81+
needs: [init,validation]
7182
strategy:
7283
fail-fast: false
7384
matrix: ${{ fromJson(needs.init.outputs.matrix) }}

0 commit comments

Comments
 (0)