File tree Expand file tree Collapse file tree 2 files changed +15
-6
lines changed Expand file tree Collapse file tree 2 files changed +15
-6
lines changed Original file line number Diff line number Diff line change 15
15
matrix :
16
16
integration : [
17
17
bitflags,
18
- chalk,
19
- crater,
20
18
error-chain,
21
- glob,
22
19
log,
23
20
mdbook,
24
21
packed_simd,
37
34
# Instead, leverage `continue-on-error`
38
35
# https://help.github.com/en/actions/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions#jobsjob_idstepscontinue-on-error
39
36
#
37
+ # Failing due to breaking changes in rustfmt 2.0 where empty
38
+ # match blocks have trailing commas removed
39
+ # https://github.com/rust-lang/rustfmt/pull/4226
40
+ - integration : chalk
41
+ allow-failure : true
42
+ - integration : crater
43
+ allow-failure : true
44
+ - integration : glob
45
+ allow-failure : true
40
46
# Using old rustfmt configuration option
41
47
- integration : rand
42
48
allow-failure : true
Original file line number Diff line number Diff line change @@ -18,10 +18,7 @@ matrix:
18
18
- env : CFG_RELEASE_CHANNEL=beta
19
19
- os : osx
20
20
- env : INTEGRATION=bitflags
21
- - env : INTEGRATION=chalk
22
- - env : INTEGRATION=crater
23
21
- env : INTEGRATION=error-chain
24
- - env : INTEGRATION=glob
25
22
- env : INTEGRATION=log
26
23
- env : INTEGRATION=mdbook
27
24
- env : INTEGRATION=packed_simd
@@ -30,6 +27,12 @@ matrix:
30
27
- env : INTEGRATION=tempdir
31
28
- env : INTEGRATION=futures-rs
32
29
allow_failures :
30
+ # Failing due to breaking changes in rustfmt 2.0 where empty
31
+ # match blocks have trailing commas removed
32
+ # https://github.com/rust-lang/rustfmt/pull/4226
33
+ - env : INTEGRATION=chalk
34
+ - env : INTEGRATION=crater
35
+ - env : INTEGRATION=glob
33
36
# Using old configuration option
34
37
- env : INTEGRATION=rand
35
38
# Doesn't build - keep this in allow_failures as it's fragile to breaking changes of rustc.
You can’t perform that action at this time.
0 commit comments