This is an automated email from the ASF dual-hosted git repository. potiuk pushed a commit to branch v2-1-test in repository https://gitbox.apache.org/repos/asf/airflow.git
commit 4b40effce6c60bd0bcb073edc08404a3327477bb Author: Jarek Potiuk <[email protected]> AuthorDate: Mon Jul 26 12:04:30 2021 +0200 Do not fail-fast kubernetes tests (#17228) When any of the k8s tests fails, all others were cancelled. This is not a good idea when we have transient errors because the failure might be intermitted and we might want to merge change even if one of the K8S tests fail. (cherry picked from commit 10350aa80b531bb00e68c8f4d9e71a8fb912223e) --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b5f2fd7..8c31784 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -930,6 +930,7 @@ ${{ hashFiles('.pre-commit-config.yaml') }}" strategy: matrix: executor: [KubernetesExecutor, CeleryExecutor, LocalExecutor] + fail-fast: false env: RUNS_ON: ${{ fromJson(needs.build-info.outputs.runsOn) }} BACKEND: postgres @@ -985,7 +986,6 @@ ${{ hashFiles('.pre-commit-config.yaml') }}" name: Helm Chart Executor Upgrade runs-on: ${{ fromJson(needs.build-info.outputs.runsOn) }} needs: [build-info, prod-images] - env: RUNS_ON: ${{ fromJson(needs.build-info.outputs.runsOn) }} BACKEND: postgres
