diff options
author | Alex Crichton <alex@alexcrichton.com> | 2015-08-16 22:10:53 -0700 |
---|---|---|
committer | Alex Crichton <alex@alexcrichton.com> | 2015-08-16 22:11:02 -0700 |
commit | b5f4a0e03a4b2886b4d10d5f372209fd2a645a27 (patch) | |
tree | 575bc5e7fa2bce3ca935a59a6dc93c0fbadff9fe /.travis.yml | |
parent | ccd5ad20e2d51c3c26cd6456d7ae1e2ea665936a (diff) | |
download | ssh2-rs-b5f4a0e03a4b2886b4d10d5f372209fd2a645a27.zip |
Don't document dependencies on travis
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index cb61d10..6f1149e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,10 +12,12 @@ before_script: - cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys - telnet localhost 22 & script: + - export CARGO_TARGET_DIR=`pwd`/target - cargo build --verbose - cargo test --verbose - rustdoc --test README.md -L target - - cargo doc + - cargo doc --no-deps + - cargo doc --no-deps --manifest-path libssh2-sys/Cargo.toml after_success: - travis-cargo --only nightly doc-upload - travis-cargo coveralls --no-sudo |