Skip to content

Commit a4abe8b

Browse files
committed
WIP: build all jobs
1 parent 18bf94c commit a4abe8b

File tree

1 file changed

+25
-29
lines changed

1 file changed

+25
-29
lines changed

.travis.yml

+25-29
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,6 @@ sudo: required
44
dist: xenial
55
services: docker
66

7-
stages:
8-
- tools-and-build-and-tier1
9-
- tier2
10-
117
matrix:
128
include:
139
# TOOLS
@@ -17,13 +13,13 @@ matrix:
1713
install:
1814
- travis_retry rustup component add rust-src
1915
- travis_retry cargo install xargo
20-
stage: tools-and-build-and-tier1
16+
stage: tier2
2117
- name: "Shellcheck"
2218
install: true
2319
script:
2420
- shellcheck --version
2521
- shellcheck ci/*.sh
26-
stage: tools-and-build-and-tier1
22+
stage: tier2
2723
- name: "Style"
2824
install: true
2925
script:
@@ -33,130 +29,130 @@ matrix:
3329
# if rustup component add rustfmt-preview ; then
3430
# cargo fmt --all -- --check
3531
# fi
36-
stage: tools-and-build-and-tier1
32+
stage: tier2
3733
- name: "Semver Linux"
3834
install: travis_retry cargo +nightly install semverver
3935
script: sh ci/semver.sh
40-
stage: tools-and-build-and-tier1
36+
stage: tier2
4137
- name: "Semver MacOSX"
4238
install: travis_retry cargo +nightly install semverver
4339
script: sh ci/semver.sh
4440
os: osx
4541
osx_image: xcode10
46-
stage: tools-and-build-and-tier1
42+
stage: tier2
4743

4844
# BUILD stable, beta, nightly
4945
- name: "Build Stable Rust"
5046
script: sh ci/build.sh
51-
stage: tools-and-build-and-tier1
47+
stage: tier2
5248
rust: stable
5349
install: true
5450
- name: "Build Beta Rust"
5551
script: sh ci/build.sh
56-
stage: tools-and-build-and-tier1
52+
stage: tier2
5753
rust: beta
5854
install: true
5955
- name: "Build Nightly Rust"
6056
script: sh ci/build.sh
61-
stage: tools-and-build-and-tier1
57+
stage: tier2
6258
rust: nightly
6359
install:
6460
- travis_retry rustup component add rust-src
6561
- travis_retry cargo install xargo
6662
- name: "Build Stable Rust"
6763
script: sh ci/build.sh
68-
stage: tools-and-build-and-tier1
64+
stage: tier2
6965
rust: stable
7066
os: osx
7167
osx_image: xcode10
7268
install: true
7369
- name: "Build Beta Rust"
7470
script: sh ci/build.sh
75-
stage: tools-and-build-and-tier1
71+
stage: tier2
7672
rust: beta
7773
os: osx
7874
osx_image: xcode10
7975
install: true
8076
- name: "Build Nightly Rust"
8177
script: sh ci/build.sh
82-
stage: tools-and-build-and-tier1
78+
stage: tier2
8379
rust: nightly
8480
os: osx
8581
osx_image: xcode10
8682
install: true
8783
- name: "Build Stable Rust 1.13.0"
8884
script: sh ci/build.sh
89-
stage: tools-and-build-and-tier1
85+
stage: tier2
9086
rust: 1.13.0
9187
install: true
9288
- name: "Build Stable Rust 1.19.0"
9389
script: sh ci/build.sh
94-
stage: tools-and-build-and-tier1
90+
stage: tier2
9591
rust: 1.19.0
9692
install: true
9793
- name: "Build Stable Rust 1.24.0"
9894
script: sh ci/build.sh
99-
stage: tools-and-build-and-tier1
95+
stage: tier2
10096
rust: 1.24.0
10197
install: true
10298
- name: "Build Stable Rust 1.25.0"
10399
script: sh ci/build.sh
104-
stage: tools-and-build-and-tier1
100+
stage: tier2
105101
rust: 1.25.0
106102
install: true
107103
- name: "Build Stable Rust 1.30.0"
108104
script: sh ci/build.sh
109-
stage: tools-and-build-and-tier1
105+
stage: tier2
110106
rust: 1.30.0
111107
install: true
112108
- name: "Build Stable Rust 1.13.0"
113109
script: sh ci/build.sh
114-
stage: tools-and-build-and-tier1
110+
stage: tier2
115111
rust: 1.13.0
116112
os: osx
117113
osx_image: xcode10
118114
install: true
119115
- name: "Build Stable Rust 1.19.0"
120116
script: sh ci/build.sh
121-
stage: tools-and-build-and-tier1
117+
stage: tier2
122118
rust: 1.19.0
123119
os: osx
124120
osx_image: xcode10
125121
install: true
126122
- name: "Build Stable Rust 1.24.0"
127123
script: sh ci/build.sh
128-
stage: tools-and-build-and-tier1
124+
stage: tier2
129125
rust: 1.24.0
130126
os: osx
131127
osx_image: xcode10
132128
install: true
133129
- name: "Build Stable Rust 1.25.0"
134130
script: sh ci/build.sh
135-
stage: tools-and-build-and-tier1
131+
stage: tier2
136132
rust: 1.25.0
137133
os: osx
138134
osx_image: xcode10
139135
install: true
140136
- name: "Build Stable Rust 1.30.0"
141137
script: sh ci/build.sh
142-
stage: tools-and-build-and-tier1
138+
stage: tier2
143139
rust: 1.30.0
144140
os: osx
145141
osx_image: xcode10
146142
install: true
147143
- env: TARGET=i686-apple-darwin
148144
os: osx
149145
osx_image: xcode10
150-
stage: tools-and-build-and-tier1
146+
stage: tier2
151147
- env: TARGET=i686-unknown-linux-gnu
152-
stage: tools-and-build-and-tier1
148+
stage: tier2
153149
- env: TARGET=x86_64-apple-darwin
154150
os: osx
155151
osx_image: xcode10
156152
install: true
157-
stage: tools-and-build-and-tier1
153+
stage: tier2
158154
- env: TARGET=x86_64-unknown-linux-gnu
159-
stage: tools-and-build-and-tier1
155+
stage: tier2
160156
install: true
161157

162158
# Tier 2 targets

0 commit comments

Comments
 (0)