Skip to content

Commit 0675a1f

Browse files
committed
Mark jobs as fail-fast: true
1 parent be5dad4 commit 0675a1f

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

.github/workflows/bors.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
name: Docker Linux Tier1
1212
runs-on: ubuntu-18.04
1313
strategy:
14-
fail-fast: false
14+
fail-fast: true
1515
matrix:
1616
target: [
1717
i686-unknown-linux-gnu,
@@ -31,7 +31,7 @@ jobs:
3131
name: macOS
3232
runs-on: macos-10.15
3333
strategy:
34-
fail-fast: false
34+
fail-fast: true
3535
matrix:
3636
target: [
3737
x86_64-apple-darwin,
@@ -52,7 +52,7 @@ jobs:
5252
env:
5353
OS: windows
5454
strategy:
55-
fail-fast: false
55+
fail-fast: true
5656
matrix:
5757
include:
5858
- target: x86_64-pc-windows-gnu
@@ -83,7 +83,7 @@ jobs:
8383
name: Style and docs
8484
runs-on: ubuntu-18.04
8585
strategy:
86-
fail-fast: false
86+
fail-fast: true
8787
steps:
8888
- uses: rust-lang/simpleinfra/github-actions/cancel-outdated-builds@master
8989
with:
@@ -101,7 +101,7 @@ jobs:
101101
needs: [docker_linux_tier1, style_and_docs]
102102
runs-on: ubuntu-18.04
103103
strategy:
104-
fail-fast: false
104+
fail-fast: true
105105
max-parallel: 10
106106
matrix:
107107
target: [
@@ -152,7 +152,7 @@ jobs:
152152
needs: [docker_linux_tier1, style_and_docs]
153153
runs-on: ubuntu-18.04
154154
strategy:
155-
fail-fast: false
155+
fail-fast: true
156156
steps:
157157
- uses: rust-lang/simpleinfra/github-actions/cancel-outdated-builds@master
158158
with:
@@ -170,7 +170,7 @@ jobs:
170170
env:
171171
OS: linux
172172
strategy:
173-
fail-fast: false
173+
fail-fast: true
174174
max-parallel: 4
175175
matrix:
176176
toolchain: [
@@ -200,7 +200,7 @@ jobs:
200200
env:
201201
OS: macos
202202
strategy:
203-
fail-fast: false
203+
fail-fast: true
204204
max-parallel: 3
205205
matrix:
206206
toolchain: [
@@ -228,7 +228,7 @@ jobs:
228228
needs: build_channels_linux
229229
runs-on: ubuntu-18.04
230230
strategy:
231-
fail-fast: false
231+
fail-fast: true
232232
steps:
233233
- uses: rust-lang/simpleinfra/github-actions/cancel-outdated-builds@master
234234
with:
@@ -245,7 +245,7 @@ jobs:
245245
needs: build_channels_macos
246246
runs-on: macos-10.15
247247
strategy:
248-
fail-fast: false
248+
fail-fast: true
249249
steps:
250250
- uses: rust-lang/simpleinfra/github-actions/cancel-outdated-builds@master
251251
with:

.github/workflows/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
name: Docker Linux Tier1
1313
runs-on: ubuntu-18.04
1414
strategy:
15-
fail-fast: false
15+
fail-fast: true
1616
matrix:
1717
target: [
1818
i686-unknown-linux-gnu,
@@ -29,7 +29,7 @@ jobs:
2929
name: macOS
3030
runs-on: macos-10.15
3131
strategy:
32-
fail-fast: false
32+
fail-fast: true
3333
matrix:
3434
target: [
3535
x86_64-apple-darwin,
@@ -47,7 +47,7 @@ jobs:
4747
env:
4848
OS: windows
4949
strategy:
50-
fail-fast: false
50+
fail-fast: true
5151
matrix:
5252
include:
5353
- target: x86_64-pc-windows-gnu
@@ -75,7 +75,7 @@ jobs:
7575
name: Style and docs
7676
runs-on: ubuntu-18.04
7777
strategy:
78-
fail-fast: false
78+
fail-fast: true
7979
steps:
8080
- uses: actions/checkout@v2
8181
- name: Setup Rust toolchain

0 commit comments

Comments
 (0)