forked from rust-lang/futures-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
63 lines (60 loc) · 2.83 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
language: rust
# Compile some basic crates on stable/beta, but the main development is
# happening on nightly right now due to the usage of Cargo workspaces, Cargo
# overrides, and some performance improvements in the compiler.
matrix:
include:
- os: linux
rust: stable
script: cargo build --manifest-path futures-minihttp/Cargo.toml
- os: osx
rust: stable
script: cargo build --manifest-path futures-minihttp/Cargo.toml
- os: linux
rust: beta
script: cargo build --manifest-path futures-minihttp/Cargo.toml
rust:
- nightly
sudo: false
before_script:
- pip install git+https://github.com/euclio/travis-cargo@kcov --user && export PATH=$HOME/.local/bin:$PATH
script:
- cargo test
- cargo test --manifest-path futures-io/Cargo.toml
- cargo test --manifest-path futures-iobuf/Cargo.toml
- cargo test --manifest-path futures-cpupool/Cargo.toml
- cargo test --manifest-path futures-mio/Cargo.toml
- cargo test --manifest-path futures-tls/Cargo.toml
- cargo test --manifest-path futures-tls/Cargo.toml --features force-openssl
- cargo test --manifest-path futures-minihttp/Cargo.toml
- cargo test --manifest-path futures-socks5/Cargo.toml
- cargo test --manifest-path futures-curl/Cargo.toml
- cargo build --manifest-path futures-minihttp/tls-example/Cargo.toml
- cargo build --manifest-path futures-minihttp/techempower1/Cargo.toml
- cargo build --manifest-path futures-minihttp/techempower2/Cargo.toml
- cargo doc --no-deps
- cargo doc --no-deps --manifest-path futures-io/Cargo.toml
- cargo doc --no-deps --manifest-path futures-iobuf/Cargo.toml
- cargo doc --no-deps --manifest-path futures-cpupool/Cargo.toml
- cargo doc --no-deps --manifest-path futures-mio/Cargo.toml
- cargo doc --no-deps --manifest-path futures-tls/Cargo.toml
- cargo doc --no-deps --manifest-path futures-curl/Cargo.toml
after_success:
- travis-cargo --only nightly doc-upload
- travis-cargo coveralls --no-sudo
env:
global:
- TRAVIS_CARGO_NIGHTLY_FEATURE=
- secure: LVrtwDI0IJradnHRk53dGWtTS+limhkuHym17wuto/Zaz6IJB9aq7G5wSYuZU3qabcxah7pigjXPFgzYwFD6mNHW1DAuAko1qOi4AL0rvg+rA7Fa5E9NEIxoqzCf+wBtqCvomBe/akOs7UtHdjE3CZpIEPwSHVf3jf61suB0mPVUW0AFTHvYTvHT4lyHjlruY+Ifi350yb4t0Oy9rU1bHNtX0q1T0mKuTnKkmpCT2Kj+2L7afgsAR3UgBjL3Py89LXmnF5VxSMGJWa6HL3xgEi3CXxBRQFdr+vipIDejWtjY+7DzvSRHid1rVfwCLdLfTwvA3Pf3b0I5DSJnjzRgKkfiH2j7JNFtCvLz+mM5C/4QJzAgNmdyNuDv0qOy07OABtYs/LE60f6ZZ5YMZAloMtA/9qQjJx+c2jO2nTZkx6vNJ5C421yzm2klQSL0d8pFaDmojqC5pT85MYhf3mESqSw1UjwFPa0xFtysT52oJBcyvwI/wBYbK40sArjSDZaU2Jncw9ptDWML/xUM+sWHF7ZW/mI1V15lqaCBX91xlbppfWDMgNF2c60vC90t0entbGpYLvHjQMdW6iucbsLLN5KAPzYPuufX2vJa8V1gxMxZ7CLcVLx9lmm3uEdrOZLEg4Fg7H7Xqc2JRygbNrTtOeBw1/o73znnnjEv8Vl3xqg=
notifications:
email:
on_success: never
os:
- linux
- osx
addons:
apt:
packages:
- libcurl4-openssl-dev
- libelf-dev
- libdw-dev