From 61749ebf8e26ebaf5d66ac0e75b2e1b7b9f06f23 Mon Sep 17 00:00:00 2001 From: Mathijs van de Nes Date: Tue, 14 Oct 2014 10:59:30 +0200 Subject: [PATCH] Switch to github pages for documentation --- .travis.yml | 11 ++++++----- .travis/publish_doc.sh | 27 +++++++++++++++++++++++++++ README.md | 2 +- 3 files changed, 34 insertions(+), 6 deletions(-) create mode 100755 .travis/publish_doc.sh diff --git a/.travis.yml b/.travis.yml index 3f426fc9..30b3a38e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,12 +7,13 @@ notifications: env: global: - - secure: F1XhJmZGLE0WuVr7KsN0+Yn5sCiBjc8L9Lwugg5wV3/XwJqskq4EZXSFUDBbhIsMeArMftnrfxejEncySMs/CtjAaHnHxbGvCkWZAihyNQUjbbaYXTpPBfjqye5dhkWIEeTZXfIZacCoFxPGwGA+SWf9PfvgztQyazXEtmxtSqw= + - secure: "VeXvD0tLJyu38t87p8AAztSQVBxsCE1y016l/Nc44203V/RUxj4tz5ifaZcKziPqFHK2ITs2T6fBE1uu404zMVwA0W0J8vmG6+xDoJJLsbwKp4W3SlAI+oIEmFSTIxgzAB7hio17VPDmAqKbnbhbmbP+U94ygoztRNN3ObCZ8yo=" script: - - cargo build - - cargo test - - cargo doc --no-deps +- cargo build +- cargo test +- cargo doc --no-deps +- rustdoc --test README.md -L target after_script: - - cd target && curl http://www.rust-ci.org/artifacts/put?t=$RUSTCI_TOKEN | sh +- .travis/publish_doc.sh diff --git a/.travis/publish_doc.sh b/.travis/publish_doc.sh new file mode 100755 index 00000000..b7462d66 --- /dev/null +++ b/.travis/publish_doc.sh @@ -0,0 +1,27 @@ +#!/bin/bash + +if [ "$TRAVIS_BRANCH" = "master" ] && + [ "$TRAVIS_PULL_REQUEST" = "false" ] && + [ "$TRAVIS_REPO_SLUG" = "mvdnes/zip-rs" ] +then + echo "Publishing documentation..." + + cd $HOME + git clone --quiet --branch=gh-pages https://${GH_TOKEN}@github.com/mvdnes/zip-rs gh-pages > /dev/null + + cd gh-pages + git config user.email "travis@travis-ci.org" + git config user.name "travis-ci" + + git rm -rf . > /dev/null + cp -Rf $TRAVIS_BUILD_DIR/target/doc/* . + + git reset HEAD -- index.html > /dev/null + git checkout -- index.html > /dev/null + + git add -f . + git commit -m "Auto doc upload from travis" + git push -fq origin gh-pages > /dev/null + + echo "Published documentation" +fi diff --git a/README.md b/README.md index 4ed10974..d95844fc 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ zip-rs [![Build Status](https://travis-ci.org/mvdnes/zip-rs.svg)](https://travis-ci.org/mvdnes/zip-rs) -[Documentation](http://www.rust-ci.org/mvdnes/zip-rs/doc/zip/) +[Documentation](http://mvdnes.github.io/zip-rs/) A zip library for rust wich supports reading and writing of simple ZIP files.