From 480ac55433511516b32e8c57825839229a144665 Mon Sep 17 00:00:00 2001 From: Mathijs van de Nes Date: Sun, 28 Jun 2015 11:26:10 +0200 Subject: [PATCH] Switch to Travis only CI --- .travis.yml | 3 +++ shippable.yml | 30 ------------------------------ 2 files changed, 3 insertions(+), 30 deletions(-) delete mode 100644 shippable.yml diff --git a/.travis.yml b/.travis.yml index 6e0bf895..a3c9547a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,3 +15,6 @@ script: - cargo test - cargo doc --no-deps - rustdoc --test README.md -L target/debug + +after_success: + - curl https://mvdnes.github.io/rust-docs/travis-doc-upload.sh | bash diff --git a/shippable.yml b/shippable.yml deleted file mode 100644 index 3257f292..00000000 --- a/shippable.yml +++ /dev/null @@ -1,30 +0,0 @@ -language: python -python: - - 2.7 - -env: - - RUST_VERSION=stable - -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 --disable-sudo -y 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