Skip to content

Commit e91f3a9

Browse files
Merge pull request #1110 from Nemo157/named-ci-jobs
Add names to the CI jobs
2 parents 8a268d5 + 0f655be commit e91f3a9

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

.travis.yml

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

66
matrix:
77
include:
88
- os: osx
9-
- rust: nightly
9+
- os: linux
10+
- name: cargo bench
11+
rust: nightly
1012
script: cargo bench --all && cd futures-util && cargo bench --features=bench
11-
- rust: nightly
13+
- name: cargo build --no-default-features
14+
rust: nightly
1215
script:
1316
- cargo build --manifest-path futures/Cargo.toml --no-default-features
1417
- cargo build --manifest-path futures-channel/Cargo.toml --no-default-features
1518
- cargo build --manifest-path futures-core/Cargo.toml --no-default-features
1619
- cargo build --manifest-path futures-executor/Cargo.toml --no-default-features
1720
- cargo build --manifest-path futures-sink/Cargo.toml --no-default-features
1821
- cargo build --manifest-path futures-util/Cargo.toml --no-default-features
19-
- rust: nightly
22+
- name: cargo build --target=thumbv6m-none-eabi
23+
rust: nightly
2024
script:
2125
- rustup target add thumbv6m-none-eabi
2226
- cargo build --manifest-path futures/Cargo.toml --target thumbv6m-none-eabi --no-default-features --features nightly
23-
- rust: nightly
27+
- name: cargo doc
28+
rust: nightly
2429
script:
2530
- cargo doc
2631

0 commit comments

Comments
 (0)