mirror of
https://github.com/clap-rs/clap
synced 2024-12-14 06:42:33 +00:00
Auto merge of #322 - kbknapp:dev-vin, r=kbknapp
moving to travis crates infrastructure The idea is to get rid of `sudo` in the script, so `travis` can run builds on new crates infrastructure. It will increase build speed and decrease load on `travis`.
This commit is contained in:
commit
3fcdc6f334
1 changed files with 8 additions and 2 deletions
10
.travis.yml
10
.travis.yml
|
@ -1,5 +1,5 @@
|
|||
sudo: false
|
||||
language: rust
|
||||
sudo: required
|
||||
rust:
|
||||
- nightly
|
||||
- beta
|
||||
|
@ -14,10 +14,16 @@ script:
|
|||
cargo test --features yaml &&
|
||||
make -C clap-tests test &&
|
||||
travis-cargo --only stable doc -- --features yaml
|
||||
addons:
|
||||
apt:
|
||||
packages:
|
||||
- libcurl4-openssl-dev
|
||||
- libelf-dev
|
||||
- libdw-dev
|
||||
after_success:
|
||||
- |
|
||||
travis-cargo --only stable doc-upload &&
|
||||
travis-cargo --only stable coveralls -- --features yaml
|
||||
travis-cargo --only stable coveralls --no-sudo -- --features yaml
|
||||
env:
|
||||
global:
|
||||
secure: JLBlgHY6OEmhJ8woewNJHmuBokTNUv7/WvLkJGV8xk0t6bXBwSU0jNloXwlH7FiQTc4TccX0PumPDD4MrMgxIAVFPmmmlQOCmdpYP4tqZJ8xo189E5zk8lKF5OyaVYCs5SMmFC3cxCsKjfwGIexNu3ck5Uhwe9jI0tqgkgM3URA=
|
||||
|
|
Loading…
Reference in a new issue