Skip to content

Commit 53b2f46

Browse files
committed
Distinguish the WebAssembly build in Travis
Previously there were just two builds listed as "Rust: nightly" with no indication as to the difference.
1 parent f6674da commit 53b2f46

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.travis.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@ matrix:
1010
- rust: 1.26.0 # first release on which our doc tests pass
1111
- rust: stable
1212
- rust: beta
13-
- rust: nightly
14-
install: rustup target add wasm32-unknown-unknown
15-
script: cargo test --target wasm32-unknown-unknown --no-run
1613
- rust: nightly
1714
script:
1815
- cargo test
@@ -21,6 +18,10 @@ matrix:
2118
- RUSTFLAGS='--cfg procmacro2_semver_exempt' cargo test
2219
- RUSTFLAGS='--cfg procmacro2_semver_exempt' cargo test --features nightly
2320
- cargo update -Z minimal-versions && cargo build
21+
- rust: nightly
22+
name: WebAssembly
23+
install: rustup target add wasm32-unknown-unknown
24+
script: cargo test --target wasm32-unknown-unknown --no-run
2425

2526
before_script:
2627
- set -o errexit

0 commit comments

Comments
 (0)