File tree Expand file tree Collapse file tree 1 file changed +16
-6
lines changed Expand file tree Collapse file tree 1 file changed +16
-6
lines changed Original file line number Diff line number Diff line change 1
1
language : rust
2
- script : cargo test --all-features $CARGOFLAGS
3
2
4
3
jobs :
5
4
include :
6
5
- rust : 1.17.0
7
- env : CARGOFLAGS="-p url"
6
+ install :
7
+ # --precise requires Cargo.lock to already exist
8
+ - cargo update
9
+ # getopts is only used in tests. Its versions 0.2.16+ don’t build on 1.17.0
10
+ - cargo update -p getopts --precise 0.2.15
11
+ # data-url uses pub(crate) which is unstable in 1.17
12
+ script : cargo test --all-features -p url -p idna -p percent-encoding -p url_serde
13
+
8
14
- rust : stable
9
- env : CARGOFLAGS="--all"
15
+ script : cargo test --all-features --all
16
+
10
17
- rust : beta
11
- env : CARGOFLAGS="--all"
18
+ script : cargo test --all-features --all
19
+
12
20
- rust : nightly
13
- env : CARGOFLAGS="--all"
21
+ script : cargo test --all-features --all
22
+
14
23
- rust : nightly
15
- env : CARGOFLAGS="--all --target=wasm32-unknown-unknown"
24
+ env : TARGET=WASM32 # For job list UI
16
25
install : rustup target add wasm32-unknown-unknown
26
+ script : cargo build --all --target=wasm32-unknown-unknown
17
27
18
28
notifications :
19
29
webhooks : http://build.servo.org:54856/travis
You can’t perform that action at this time.
0 commit comments