Skip to content

Commit f3865cf

Browse files
xpuska513Conor
andauthored
Fix #22687 (#52)
* Fix #22687 * Disable gradle caching --------- Co-authored-by: Conor <[email protected]>
1 parent d570238 commit f3865cf

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

charts/airbyte/templates/env-configmap.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,6 @@ data:
7272
WORKER_STATE_STORAGE_TYPE: {{ .Values.global.state.storage.type | quote }}
7373
SHOULD_RUN_NOTIFY_WORKFLOWS: "false"
7474
MAX_NOTIFY_WORKERS: {{ .Values.worker.maxNotifyWorkers | default "5" | quote }}
75-
STRICT_COMPARISON_NORMALIZATION_TAG: ""
76-
STRICT_COMPARISON_NORMALIZATION_WORKSPACES: ""
75+
STRICT_COMPARISON_NORMALIZATION_TAG: {{ .Values.worker.strictComparisonNormalizationTag | default "strict_comparison" | quote }}
76+
STRICT_COMPARISON_NORMALIZATION_WORKSPACES: {{ .Values.worker.strictComparisonNormalizationWorkspaces | default "" | quote }}
7777
{{- end }}

charts/airbyte/values.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -826,6 +826,9 @@ worker:
826826

827827
maxNotifyWorkers: 5
828828

829+
strictComparisonNormalizationTag: "strict_comparison"
830+
strictComparisonNormalizationWorkspaces: ""
831+
829832
## @section Metrics parameters
830833
metrics:
831834
enabled: false

tools/bin/acceptance_test_kube_helm.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ fi
100100
docker system df
101101

102102
echo "Running e2e tests via gradle..."
103-
KUBE=true SUB_BUILD=PLATFORM USE_EXTERNAL_DEPLOYMENT=true ./gradlew :airbyte-tests:acceptanceTests --scan
103+
KUBE=true SUB_BUILD=PLATFORM USE_EXTERNAL_DEPLOYMENT=true ./gradlew -Dorg.gradle.caching=false :airbyte-tests:acceptanceTests --scan
104104

105105
echo "Reverting changes back"
106106
mv charts/airbyte/Chart.yaml charts/airbyte/Chart.yaml.test

0 commit comments

Comments
 (0)