Skip to content

Commit

Permalink
Use crate names in Travis script
Browse files Browse the repository at this point in the history
  • Loading branch information
MajorBreakfast committed Aug 10, 2018
1 parent 1949748 commit 6ee239e
Showing 1 changed file with 22 additions and 22 deletions.
44 changes: 22 additions & 22 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,43 +34,43 @@ matrix:
- name: cargo build --no-default-features
rust: nightly
script:
- cargo build --manifest-path futures/Cargo.toml --no-default-features
- cargo build --manifest-path futures-core/Cargo.toml --no-default-features
- cargo build --manifest-path futures-channel/Cargo.toml --no-default-features
- cargo build --manifest-path futures-executor/Cargo.toml --no-default-features
- cargo build --manifest-path futures-io/Cargo.toml --no-default-features
- cargo build --manifest-path futures-sink/Cargo.toml --no-default-features
- cargo build --manifest-path futures-util/Cargo.toml --no-default-features
- cargo build -p futures-preview --no-default-features
- cargo build -p futures-core-preview --no-default-features
- cargo build -p futures-channel-preview --no-default-features
- cargo build -p futures-executor-preview --no-default-features
- cargo build -p futures-io-preview --no-default-features
- cargo build -p futures-sink-preview --no-default-features
- cargo build -p futures-util-preview --no-default-features

- name: cargo build --all-features
rust: nightly
script:
- cargo build --manifest-path futures/Cargo.toml --all-features
- cargo build --manifest-path futures-core/Cargo.toml --all-features
- cargo build --manifest-path futures-channel/Cargo.toml --all-features
- cargo build --manifest-path futures-executor/Cargo.toml --all-features
- cargo build --manifest-path futures-io/Cargo.toml --all-features
- cargo build --manifest-path futures-sink/Cargo.toml --all-features
- cargo build --manifest-path futures-util/Cargo.toml --all-features
- cargo build -p futures-preview --all-features
- cargo build -p futures-core-preview --all-features
- cargo build -p futures-channel-preview --all-features
- cargo build -p futures-executor-preview --all-features
- cargo build -p futures-io-preview --all-features
- cargo build -p futures-sink-preview --all-features
- cargo build -p futures-util-preview --all-features

- name: cargo build --all-features (with minimal versions)
rust: nightly
script:
- cargo update -Zminimal-versions
- cargo build --manifest-path futures/Cargo.toml --all-features
- cargo build --manifest-path futures-core/Cargo.toml --all-features
- cargo build --manifest-path futures-channel/Cargo.toml --all-features
- cargo build --manifest-path futures-executor/Cargo.toml --all-features
- cargo build --manifest-path futures-io/Cargo.toml --all-features
- cargo build --manifest-path futures-sink/Cargo.toml --all-features
- cargo build --manifest-path futures-util/Cargo.toml --all-features
- cargo build -p futures-preview --all-features
- cargo build -p futures-core-preview --all-features
- cargo build -p futures-channel-preview --all-features
- cargo build -p futures-executor-preview --all-features
- cargo build -p futures-io-preview --all-features
- cargo build -p futures-sink-preview --all-features
- cargo build -p futures-util-preview --all-features

- name: cargo build --target=thumbv6m-none-eabi
rust: nightly
install:
- rustup target add thumbv6m-none-eabi
script:
- cargo build --manifest-path futures/Cargo.toml
- cargo build -p futures-preview
--target thumbv6m-none-eabi
--no-default-features
--features nightly
Expand Down

0 comments on commit 6ee239e

Please sign in to comment.