diff --git a/.travis.yml b/.travis.yml index 212a9e56a..3f6a11c5d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -38,14 +38,6 @@ branches: except: - /test.*/ -notifications: - irc: - channels: "chat.freenode.net#zetox" - template: - - "%{repository}#%{build_number} (%{branch} - %{commit} : %{author}): %{message} || Change view: %{compare_url}" - on_success: change - skip_join: true - before_install: - | if [[ "$TRAVIS_OS_NAME" == "linux" ]] @@ -73,11 +65,6 @@ script: - cargo doc after_success: - - > - test $TRAVIS_PULL_REQUEST == "false" - && (test $TRAVIS_BRANCH == "travis" - || test $TRAVIS_BRANCH == "master" ) - && bash ./scripts/deploy-gh-pages.sh # measure code coverage and upload to coveralls.io - | if [[ "$TRAVIS_OS_NAME" == "linux" ]] && [[ "$TRAVIS_RUST_VERSION" == stable ]] diff --git a/README.md b/README.md index 98dcdc4a5..69486be38 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Tox [![Travis Build Status](https://travis-ci.org/zetok/tox.svg?branch=master)](https://travis-ci.org/zetok/tox) [![Appveyor Build status](https://ci.appveyor.com/api/projects/status/0s9t39m8uexyva0a/branch/master?svg=true)](https://ci.appveyor.com/project/zetok/tox) [![Coverage Status](https://coveralls.io/repos/github/zetok/tox/badge.svg?branch=master)](https://coveralls.io/github/zetok/tox?branch=master) +# Tox [![Travis Build Status](https://travis-ci.org/tox-rs/tox.svg?branch=master)](https://travis-ci.org/tox-rs/tox) [![Appveyor Build status](https://ci.appveyor.com/api/projects/status/y3y2hi6552qgmfr0/branch/master?svg=true)](https://ci.appveyor.com/project/kpp/tox/branch/master) [![Coverage Status](https://coveralls.io/repos/github/tox-rs/tox/badge.svg?branch=master)](https://coveralls.io/github/tox-rs/tox?branch=master) This library is an implementation of [toxcore][toxcore] in Rust - P2P, distributed, encrypted, easy to use DHT-based network. diff --git a/scripts/deploy-gh-pages.sh b/scripts/deploy-gh-pages.sh deleted file mode 100755 index a01394b43..000000000 --- a/scripts/deploy-gh-pages.sh +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/bash - -# used in travis to deploy documentation to gh-pages branch - -( -cd target/doc -git init -git config user.name "Travis CI" -git config user.email "zetok@users.noreply.github.com" -echo "" > index.html -git add . -git commit --quiet -m "Deploy to GH pages." -git push --force --quiet "https://${GH_TOKEN}@github.com/zetok/tox.git" master:gh-pages &> /dev/null -)