From 215a4269a8bb0ed7ae3b20b3c30d56e9d6de693e Mon Sep 17 00:00:00 2001 From: distributivgesetz Date: Wed, 13 Sep 2023 22:59:12 +0200 Subject: [PATCH] [NO GBP] Fixes me actually breaking Run DreamChecker (#78291) > `bash`/`sh`: By default, fail-fast behavior is enforced using `set -e` for both `sh` and `bash`. When `shell: bash` is specified, `-o pipefail` is also applied to enforce early exit from pipelines that generate a non-zero exit status. it helps when I actually read the docs --- .github/workflows/ci_suite.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci_suite.yml b/.github/workflows/ci_suite.yml index 991d4e27eeea3..cd6cc81352882 100644 --- a/.github/workflows/ci_suite.yml +++ b/.github/workflows/ci_suite.yml @@ -68,6 +68,7 @@ jobs: run: tools/bootstrap/python -m define_sanity.check - name: Run DreamChecker if: steps.linter-setup.conclusion == 'success' && !cancelled() + shell: bash run: ~/dreamchecker 2>&1 | bash tools/ci/annotate_dm.sh - name: Run Map Checks if: steps.linter-setup.conclusion == 'success' && !cancelled()