mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-21 22:34:05 +00:00
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 commit is contained in:
parent
e91aebc1a3
commit
fde5811d74
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
@ -624,6 +624,7 @@ jobs:
|
||||
steps:
|
||||
- name: mark the job as a success
|
||||
run: exit 0
|
||||
shell: bash
|
||||
name: bors build finished
|
||||
runs-on: ubuntu-latest
|
||||
try-failure:
|
||||
@ -633,6 +634,7 @@ jobs:
|
||||
steps:
|
||||
- name: mark the job as a failure
|
||||
run: exit 1
|
||||
shell: bash
|
||||
name: bors build finished
|
||||
runs-on: ubuntu-latest
|
||||
auto-success:
|
||||
@ -642,6 +644,7 @@ jobs:
|
||||
steps:
|
||||
- name: mark the job as a success
|
||||
run: exit 0
|
||||
shell: bash
|
||||
name: bors build finished
|
||||
runs-on: ubuntu-latest
|
||||
auto-failure:
|
||||
@ -651,5 +654,6 @@ jobs:
|
||||
steps:
|
||||
- name: mark the job as a failure
|
||||
run: exit 1
|
||||
shell: bash
|
||||
name: bors build finished
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -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
|
||||
|
||||
###########################
|
||||
|
Loading…
Reference in New Issue
Block a user