Skip to content

Commit b554353

Browse files
committed
Add names to the CI jobs
1 parent 8a268d5 commit b554353

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

.travis.yml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,30 @@
11
language: rust
22
rust:
3-
- nightly
3+
- nightly
44
sudo: false
55

66
matrix:
77
include:
88
- os: osx
9-
- rust: nightly
9+
- name: cargo bench
10+
rust: nightly
1011
script: cargo bench --all && cd futures-util && cargo bench --features=bench
11-
- rust: nightly
12+
- name: cargo build --no-default-features
13+
rust: nightly
1214
script:
1315
- cargo build --manifest-path futures/Cargo.toml --no-default-features
1416
- cargo build --manifest-path futures-channel/Cargo.toml --no-default-features
1517
- cargo build --manifest-path futures-core/Cargo.toml --no-default-features
1618
- cargo build --manifest-path futures-executor/Cargo.toml --no-default-features
1719
- cargo build --manifest-path futures-sink/Cargo.toml --no-default-features
1820
- cargo build --manifest-path futures-util/Cargo.toml --no-default-features
19-
- rust: nightly
21+
- name: cargo build --target=thumbv6m-none-eabi
22+
rust: nightly
2023
script:
2124
- rustup target add thumbv6m-none-eabi
2225
- cargo build --manifest-path futures/Cargo.toml --target thumbv6m-none-eabi --no-default-features --features nightly
23-
- rust: nightly
26+
- name: cargo doc
27+
rust: nightly
2428
script:
2529
- cargo doc
2630

0 commit comments

Comments
 (0)