1
1
language : rust
2
+ rust :
3
+ - nightly
2
4
sudo : false
3
5
4
6
matrix :
5
7
include :
6
8
- os : osx
7
- - rust : stable
8
- - rust : beta
9
- - rust : nightly
10
- script : cargo bench --all && cd futures-util && cargo bench --features=bench
9
+ # - rust: stable
10
+ # - rust: beta
11
+ # - rust: nightly
12
+ # script: cargo bench --all && cd futures-util && cargo bench --features=bench
11
13
- rust : nightly
12
14
before_script :
13
15
- pip install ghp-import --user && export PATH=$HOME/.local/bin:$PATH
@@ -16,33 +18,33 @@ matrix:
16
18
after_success :
17
19
- ghp-import -n target/doc
18
20
- git push -qf https://${GH_TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git gh-pages
19
- - rust : stable
20
- script :
21
- - cargo build --manifest-path futures-core/Cargo.toml --no-default-features
22
- - cargo build --manifest-path futures/Cargo.toml --no-default-features
23
- - cargo build --manifest-path futures-channel/Cargo.toml --no-default-features
24
- - cargo build --manifest-path futures-executor/Cargo.toml --no-default-features
25
- - cargo build --manifest-path futures-sink/Cargo.toml --no-default-features
26
- - cargo build --manifest-path futures-util/Cargo.toml --no-default-features
27
- - rust : nightly
28
- script :
29
- - cargo build --manifest-path futures-core/Cargo.toml --features nightly
30
- - cargo build --manifest-path futures-stable/Cargo.toml --features nightly
31
- - cargo build --manifest-path futures-async-runtime/Cargo.toml --features nightly
32
- - cargo build --manifest-path futures-macro-async/Cargo.toml --features nightly
33
- - cargo build --manifest-path futures/Cargo.toml --features nightly
34
- - cargo test --manifest-path futures-macro-await/Cargo.toml --features nightly
35
- - cargo test --manifest-path futures/Cargo.toml --features nightly --test async_await_tests
36
- - rust : nightly
37
- script :
38
- - rustup component add rust-src
39
- - cargo install xargo
40
- - xargo build --manifest-path futures/Cargo.toml --target thumbv6m-none-eabi --no-default-features --features nightly
41
- - rust : 1.20.0
42
- script : cargo test --all
43
- - rust : nightly
44
- script :
45
- - cargo test --manifest-path futures/testcrate/Cargo.toml
21
+ # - rust: stable
22
+ # script:
23
+ # - cargo build --manifest-path futures-core/Cargo.toml --no-default-features
24
+ # - cargo build --manifest-path futures/Cargo.toml --no-default-features
25
+ # - cargo build --manifest-path futures-channel/Cargo.toml --no-default-features
26
+ # - cargo build --manifest-path futures-executor/Cargo.toml --no-default-features
27
+ # - cargo build --manifest-path futures-sink/Cargo.toml --no-default-features
28
+ # - cargo build --manifest-path futures-util/Cargo.toml --no-default-features
29
+ # - rust: nightly
30
+ # script:
31
+ # - cargo build --manifest-path futures-core/Cargo.toml --features nightly
32
+ # - cargo build --manifest-path futures-stable/Cargo.toml --features nightly
33
+ # - cargo build --manifest-path futures-async-runtime/Cargo.toml --features nightly
34
+ # - cargo build --manifest-path futures-macro-async/Cargo.toml --features nightly
35
+ # - cargo build --manifest-path futures/Cargo.toml --features nightly
36
+ # - cargo test --manifest-path futures-macro-await/Cargo.toml --features nightly
37
+ # - cargo test --manifest-path futures/Cargo.toml --features nightly --test async_await_tests
38
+ # - rust: nightly
39
+ # script:
40
+ # - rustup component add rust-src
41
+ # - cargo install xargo
42
+ # - xargo build --manifest-path futures/Cargo.toml --target thumbv6m-none-eabi --no-default-features --features nightly
43
+ # - rust: 1.20.0
44
+ # script: cargo test --all
45
+ # - rust: nightly
46
+ # script:
47
+ # - cargo test --manifest-path futures/testcrate/Cargo.toml
46
48
47
49
script :
48
50
- cargo test --all
0 commit comments