1
1
dist : xenial
2
2
language : bash
3
3
4
- os :
5
- - linux
6
- - osx
7
- - windows
8
-
9
4
branches :
10
5
# Don't build these branches
11
6
except :
@@ -51,14 +46,6 @@ install:
51
46
matrix :
52
47
fast_finish : true
53
48
include :
54
- # Builds that are executed for every PR
55
- - os : osx # run base tests on both platforms
56
- env : BASE_TESTS=true
57
- - os : linux
58
- env : BASE_TESTS=true
59
- - os : windows
60
- env : CARGO_INCREMENTAL=0 BASE_TESTS=true OS_WINDOWS=true
61
-
62
49
# Builds that are only executed when a PR is r+ed or a try build is started
63
50
# We don't want to run these always because they go towards
64
51
# the build limit within the Travis rust-lang account.
@@ -78,29 +65,21 @@ matrix:
78
65
- env : INTEGRATION=bluss/rust-itertools
79
66
if : repo =~ /^rust-lang\/rust-clippy$/ AND branch IN (auto, try)
80
67
- env : INTEGRATION=serde-rs/serde MANIFEST_PATH=serde/Cargo.toml
81
- if : repo =~ /^rust-lang\/rust-clippy$/ AND branch IN (auto, try)
68
+ if : repo =~ /^rust-lang\/rust-clippy$/
82
69
- env : INTEGRATION=rust-lang-nursery/stdsimd MANIFEST_PATH=crates/core_arch/Cargo.toml
83
- if : repo =~ /^rust-lang\/rust-clippy$/ AND branch IN (auto, try)
70
+ if : repo =~ /^rust-lang\/rust-clippy$/
84
71
- env : INTEGRATION=rust-random/rand
85
72
if : repo =~ /^rust-lang\/rust-clippy$/ AND branch IN (auto, try)
86
73
- env : INTEGRATION=rust-lang-nursery/futures-rs MANIFEST_PATH=futures/Cargo.toml
87
- if : repo =~ /^rust-lang\/rust-clippy$/ AND branch IN (auto, try)
74
+ if : repo =~ /^rust-lang\/rust-clippy$/
88
75
- env : INTEGRATION=Marwes/combine
89
76
if : repo =~ /^rust-lang\/rust-clippy$/ AND branch IN (auto, try)
90
77
- env : INTEGRATION=rust-lang-nursery/failure
91
78
if : repo =~ /^rust-lang\/rust-clippy$/ AND branch IN (auto, try)
92
79
- env : INTEGRATION=rust-lang-nursery/log
93
- if : repo =~ /^rust-lang\/rust-clippy$/ AND branch IN (auto, try)
80
+ if : repo =~ /^rust-lang\/rust-clippy$/
94
81
- env : INTEGRATION=chronotope/chrono
95
82
if : repo =~ /^rust-lang\/rust-clippy$/ AND branch IN (auto, try)
96
- allow_failures :
97
- - os : windows
98
- env : CARGO_INCREMENTAL=0 BASE_TESTS=true OS_WINDOWS=true
99
- # prevent these jobs with default env vars
100
- exclude :
101
- - os : linux
102
- - os : osx
103
- - os : windows
104
83
105
84
before_script :
106
85
- |
0 commit comments