forked from Elrendio/ssh2-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
35 lines (31 loc) · 855 Bytes
/
.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
language: rust
sudo: required
matrix:
include:
- rust: 1.36.0
- rust: stable
- os: osx
before_install:
- export OPENSSL_INCLUDE_DIR=`brew --prefix openssl`/include
- export OPENSSL_LIB_DIR=`brew --prefix openssl`/lib
- rust: beta
- rust: nightly
- name: "master doc to gh-pages"
rust: nightly
script:
- cargo doc --no-deps
- cargo doc --no-deps --manifest-path libssh2-sys/Cargo.toml
deploy:
provider: script
script: curl -LsSf https://git.io/fhJ8n | rustc - && (cd target/doc && ../../rust_out)
skip_cleanup: true
on:
branch: master
script:
- cargo build
- tests/run_integration_tests.sh
- rustdoc --test README.md -L target
- cargo run --manifest-path systest/Cargo.toml
notifications:
email:
on_success: never