Proxy: Download fewer crates in Travis CI runs (#597)

Follow up
https://github.com/runconduit/conduit/pull/593 by avoiding
`cargo fetch` in favor of the implicit fetch done in `cargo build`
to work around the lack of a `--target` flag in `cargo fetch`. This
should at least slightly improve the speed and reliability of Travis
CI runs.

Signed-off-by: Brian Smith <brian@briansmith.org>
This commit is contained in:
Brian Smith 2018-03-21 10:43:53 -10:00 committed by GitHub
parent a9589ecf99
commit 359460c826
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 3 deletions

View File

@ -21,10 +21,8 @@ jobs:
language: rust
rust: stable
cache: cargo
install:
- cargo fetch --locked
script:
- cargo test --frozen --no-default-features
- cargo test --locked --no-default-features
- language: go
# XXX; The "1.10" must be quoted or it will get intrepreted as 1.1. See