Skip to content

Commit

Permalink
Merge pull request rust-lang#1963 from taiki-e/ci
Browse files Browse the repository at this point in the history
Update and fix CI config
  • Loading branch information
Nemo157 committed Nov 7, 2019
2 parents 19c7dfd + 26814b5 commit cb4379c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 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
2 changes: 1 addition & 1 deletion futures/tests/buffer_unordered.rs
Expand Up @@ -6,7 +6,7 @@ use std::sync::mpsc as std_mpsc;
use std::thread;

#[test]
#[cfg_attr(target_os = "macos", ignore)] // FIXME: https://github.com/rust-lang-nursery/futures-rs/issues/1790
#[ignore] // FIXME: https://github.com/rust-lang-nursery/futures-rs/issues/1790
fn works() {
const N: usize = 4;

Expand Down

0 comments on commit cb4379c

Please sign in to comment.