diff --git a/.travis.yml b/.travis.yml index e24f3e07..fbb1404a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,7 +15,4 @@ script: - cargo build - cargo test - cargo doc --no-deps - - rustdoc --test README.md -L target - -after_success: - - curl https://mvdnes.github.io/rust-docs/travis-doc-upload.sh | sh + - rustdoc --test README.md -L target/debug diff --git a/.travis/id_rsa.enc b/.travis/id_rsa.enc deleted file mode 100644 index 5431e413..00000000 Binary files a/.travis/id_rsa.enc and /dev/null differ diff --git a/README.md b/README.md index 4940b63a..45bb876f 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,7 @@ zip-rs ====== [![Build Status](https://travis-ci.org/mvdnes/zip-rs.svg?branch=master)](https://travis-ci.org/mvdnes/zip-rs) +[![Build Status](https://api.shippable.com/projects/553fdfb4edd7f2c052d66b59/badge?branchName=master)](https://app.shippable.com/projects/553fdfb4edd7f2c052d66b59/builds/latest) [![Crates.io version](https://img.shields.io/crates/v/zip.svg)](https://crates.io/crates/zip) [Documentation](http://mvdnes.github.io/rust-docs/zip-rs/zip/index.html) diff --git a/.travis/travis-doc-upload.cfg b/script/doc-upload.cfg similarity index 70% rename from .travis/travis-doc-upload.cfg rename to script/doc-upload.cfg index b732a921..851b709d 100644 --- a/.travis/travis-doc-upload.cfg +++ b/script/doc-upload.cfg @@ -1,4 +1,3 @@ PROJECT_NAME=zip-rs DOCS_REPO=mvdnes/rust-docs.git -SSH_KEY_TRAVIS_ID=70a3dd61d838 DOC_RUST_VERSION=beta diff --git a/shippable.yml b/shippable.yml new file mode 100644 index 00000000..911b1bc7 --- /dev/null +++ b/shippable.yml @@ -0,0 +1,31 @@ +language: python +python: + - 2.7 + +env: + - RUST_VERSION=beta + - RUST_VERSION=nightly + +notifications: + email: + recipients: + - ci@mathijs.vd-nes.nl + on_success: never + on_failure: always + +install: + - curl -o ~/rustup.sh https://static.rust-lang.org/rustup.sh + - sudo sh ~/rustup.sh --spec=$RUST_VERSION 2> /dev/null + +before_script: + - rustc --version + - cargo --version + +script: + - cargo build + - cargo test + - cargo doc --no-deps + - rustdoc --test README.md -L target/debug + +after_success: + - curl https://mvdnes.github.io/rust-docs/shippable-doc-upload.sh | sh