Skip to content

Commit

Permalink
Update and fix Ci config
Browse files Browse the repository at this point in the history
  • Loading branch information
taiki-e committed Nov 7, 2019
1 parent 0c7fa20 commit f4edb99
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .travis.yml
Expand Up @@ -25,20 +25,21 @@ matrix:
# This is the minimum Rust version supported by `async-await` feature.
# When updating this, the reminder to update the minimum required version of `async-await` feature in README.md.
- name: cargo build --features async-await (minimum required version)
rust: beta # 1.39.0
rust: 1.39.0
script:
- cargo run --manifest-path ci/remove-dev-dependencies/Cargo.toml */Cargo.toml
- cargo build --all --features async-await
- cargo build --manifest-path futures/Cargo.toml --features async-await

- name: cargo +stable build
rust: stable
script:
- cargo run --manifest-path ci/remove-dev-dependencies/Cargo.toml */Cargo.toml
# Check default-features
- cargo build --all
# Check compat & thread-pool features
# Check compat & thread-pool & async-await features
- cargo build --manifest-path futures/Cargo.toml --features io-compat
- cargo build --manifest-path futures/Cargo.toml --features thread-pool
- cargo build --manifest-path futures/Cargo.toml --features async-await

- name: cargo +beta build
rust: beta
Expand Down

0 comments on commit f4edb99

Please sign in to comment.