blob: dc45ca8a70fd9a943aceaa9e5e98b23ba7e845a0 (
plain)
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
36
37
38
39
40
41
42
43
44
45
46
|
language: rust
sudo: required
matrix:
include:
- rust: 1.26.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
before_script:
- ssh-keygen -t rsa -f ~/.ssh/id_rsa -N "" -q
- eval `ssh-agent -s`
- ssh-add ~/.ssh/id_rsa
- cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys
- echo "Host localhost" >> ~/.ssh/config
- echo " StrictHostKeyChecking no" >> ~/.ssh/config
- chmod 600 ~/.ssh/authorized_keys
- ssh -v localhost echo hello
script:
- cargo build
- cargo test --features vendored-openssl
- cargo test
- rustdoc --test README.md -L target
- cargo run --manifest-path systest/Cargo.toml
notifications:
email:
on_success: never
|