Skip to content

Commit 6ee239e

Browse files
Use crate names in Travis script
1 parent 1949748 commit 6ee239e

File tree

1 file changed

+22
-22
lines changed

1 file changed

+22
-22
lines changed

.travis.yml

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -34,43 +34,43 @@ matrix:
3434
- name: cargo build --no-default-features
3535
rust: nightly
3636
script:
37-
- cargo build --manifest-path futures/Cargo.toml --no-default-features
38-
- cargo build --manifest-path futures-core/Cargo.toml --no-default-features
39-
- cargo build --manifest-path futures-channel/Cargo.toml --no-default-features
40-
- cargo build --manifest-path futures-executor/Cargo.toml --no-default-features
41-
- cargo build --manifest-path futures-io/Cargo.toml --no-default-features
42-
- cargo build --manifest-path futures-sink/Cargo.toml --no-default-features
43-
- cargo build --manifest-path futures-util/Cargo.toml --no-default-features
37+
- cargo build -p futures-preview --no-default-features
38+
- cargo build -p futures-core-preview --no-default-features
39+
- cargo build -p futures-channel-preview --no-default-features
40+
- cargo build -p futures-executor-preview --no-default-features
41+
- cargo build -p futures-io-preview --no-default-features
42+
- cargo build -p futures-sink-preview --no-default-features
43+
- cargo build -p futures-util-preview --no-default-features
4444

4545
- name: cargo build --all-features
4646
rust: nightly
4747
script:
48-
- cargo build --manifest-path futures/Cargo.toml --all-features
49-
- cargo build --manifest-path futures-core/Cargo.toml --all-features
50-
- cargo build --manifest-path futures-channel/Cargo.toml --all-features
51-
- cargo build --manifest-path futures-executor/Cargo.toml --all-features
52-
- cargo build --manifest-path futures-io/Cargo.toml --all-features
53-
- cargo build --manifest-path futures-sink/Cargo.toml --all-features
54-
- cargo build --manifest-path futures-util/Cargo.toml --all-features
48+
- cargo build -p futures-preview --all-features
49+
- cargo build -p futures-core-preview --all-features
50+
- cargo build -p futures-channel-preview --all-features
51+
- cargo build -p futures-executor-preview --all-features
52+
- cargo build -p futures-io-preview --all-features
53+
- cargo build -p futures-sink-preview --all-features
54+
- cargo build -p futures-util-preview --all-features
5555

5656
- name: cargo build --all-features (with minimal versions)
5757
rust: nightly
5858
script:
5959
- cargo update -Zminimal-versions
60-
- cargo build --manifest-path futures/Cargo.toml --all-features
61-
- cargo build --manifest-path futures-core/Cargo.toml --all-features
62-
- cargo build --manifest-path futures-channel/Cargo.toml --all-features
63-
- cargo build --manifest-path futures-executor/Cargo.toml --all-features
64-
- cargo build --manifest-path futures-io/Cargo.toml --all-features
65-
- cargo build --manifest-path futures-sink/Cargo.toml --all-features
66-
- cargo build --manifest-path futures-util/Cargo.toml --all-features
60+
- cargo build -p futures-preview --all-features
61+
- cargo build -p futures-core-preview --all-features
62+
- cargo build -p futures-channel-preview --all-features
63+
- cargo build -p futures-executor-preview --all-features
64+
- cargo build -p futures-io-preview --all-features
65+
- cargo build -p futures-sink-preview --all-features
66+
- cargo build -p futures-util-preview --all-features
6767

6868
- name: cargo build --target=thumbv6m-none-eabi
6969
rust: nightly
7070
install:
7171
- rustup target add thumbv6m-none-eabi
7272
script:
73-
- cargo build --manifest-path futures/Cargo.toml
73+
- cargo build -p futures-preview
7474
--target thumbv6m-none-eabi
7575
--no-default-features
7676
--features nightly

0 commit comments

Comments
 (0)