Skip to content

Commit 5d95099

Browse files
fix: disable upgrade flow on alpha (#4136)
Signed-off-by: Jesse Simpson <[email protected]> Co-authored-by: distro-ci[bot] <122795778+distro-ci[bot]@users.noreply.github.com>
1 parent e778ac8 commit 5d95099

File tree

4 files changed

+5
-2
lines changed

4 files changed

+5
-2
lines changed

.github/actions/generate-chart-matrix/action.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ runs:
8686
echo " scenario: $(echo "$prScenario" | yq e '.name' -)" >> matrix_versions.txt
8787
echo " shortname: $(echo "$prScenario" | yq e '.shortname' -)" >> matrix_versions.txt
8888
echo " auth: $(echo "$prScenario" | yq e '.auth' -)" >> matrix_versions.txt
89+
echo " flow: $(echo "$prScenario" | yq e '.flow' -)" >> matrix_versions.txt
8990
echo " exclude: $(echo "$prScenario" | yq e '.exclude | join("|")' -)" >> matrix_versions.txt
9091
done
9192
sed -i -e '$s/,$/]\n/' matrix_versions.txt

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,5 +162,5 @@ jobs:
162162
exclude: ${{ matrix.exclude }}
163163
e2e-enabled: ${{ inputs.e2e-enabled || true }}
164164
run-all-e2e-tests: ${{ inputs.run-all-e2e-tests || false }} # The full test suite is changing often. This might not work. We need to change the ways of working between the applciation teams, distro and QA
165-
flows: ${{ inputs.flows || 'install,upgrade' }}
165+
flows: ${{ inputs.flows || matrix.flow || 'install,upgrade' }}
166166
deployment-ttl: ${{ inputs.deployment-ttl || '1h' }}

charts/camunda-platform-8.8/test/ci-test-config.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,14 @@ integration:
2323
- name: elasticsearch
2424
enabled: true
2525
auth: keycloak
26+
flow: install
2627
shortname: eske
2728
exclude: []
2829
- name: elasticsearch
2930
enabled: false
3031
shortname: esba
3132
auth: basic
33+
flow: install
3234
exclude: [identity,console,orchestration-grpc]
3335
nightly:
3436
scenario:

charts/camunda-platform-8.8/test/unit/identity/golden/configmap.golden.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ data:
194194
lastName: "User"
195195
196196
roles:
197-
- Identity
197+
- ManagementIdentity
198198
- Optimize
199199
- Web Modeler
200200
- Web Modeler Admin

0 commit comments

Comments
 (0)