Auto merge of #71675 - pietroalbini:ci-fix-shrink-regression, r=Mark-Simulacrum

ci: use bash when executing the "bors build finished" jobs

We don't clone the repository in those builders, so the default shell (`src/ci/exec-with-shell.py`) is not present there. This fixes a GHA regression introduced in #71434.

r? @Mark-Simulacrum
This commit is contained in:
bors 2020-04-30 15:35:16 +00:00
commit be8589fc31
2 changed files with 6 additions and 0 deletions

View file

@ -210,12 +210,14 @@ x--expand-yaml-anchors--remove:
steps:
- name: mark the job as a success
run: exit 0
shell: bash
<<: *base-outcome-job
- &base-failure-job
steps:
- name: mark the job as a failure
run: exit 1
shell: bash
<<: *base-outcome-job
###########################