34 lines
1.2 KiB
YAML
34 lines
1.2 KiB
YAML
language: rust
|
|
rust:
|
|
- stable
|
|
- beta
|
|
- nightly
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- libcurl4-openssl-dev
|
|
- libelf-dev
|
|
- libdw-dev
|
|
before_script:
|
|
- |
|
|
pip install 'travis-cargo<0.2' --user &&
|
|
export PATH=$HOME/.local/bin:$PATH
|
|
script:
|
|
- |
|
|
(cd serde && travis-cargo build) &&
|
|
(cd serde && travis-cargo test) &&
|
|
(cd serde && travis-cargo --only nightly test -- --features nightly-testing) &&
|
|
(cd serde_tests && travis-cargo test) &&
|
|
(cd serde_tests && travis-cargo --only nightly test -- --features nightly-testing) &&
|
|
(cd serde_macros && travis-cargo --only nightly test -- --features nightly-testing) &&
|
|
(cd serde_macros && travis-cargo --only nightly bench -- --features nightly-testing) &&
|
|
(cd serde && travis-cargo --only stable doc) &&
|
|
(cd serde_codegen && travis-cargo --only stable doc)
|
|
after_success:
|
|
- "(cd serde && travis-cargo --only stable doc-upload)"
|
|
- "(cd serde_tests && travis-cargo coveralls --no-sudo)"
|
|
env:
|
|
global:
|
|
- TRAVIS_CARGO_NIGHTLY_FEATURE=""
|
|
- secure: Jcd11Jy0xLyacBUB+oKOaxKBm9iZNInenRDtNBY8GKOtqF5fHUfEjgDf538hwRl5L0FP7DLr8oK0IHmzA7lPjJxlzoKVKV3IM7bRZEYzW5DMonf/lcliuGte7SH0NVFhifM87T8HI2hjGdAb+7+m34siBR7M3AY/XjLInrvUFvY=
|