]> git.lizzy.rs Git - rust.git/blobdiff - .travis.yml
Link with https instead of http
[rust.git] / .travis.yml
index 64f524a44e98330d3668c37a09339bb1a8d3a612..077a17e0bacef305bb1480f525b6758750055157 100644 (file)
@@ -30,12 +30,8 @@ install:
   - npm install remark-cli remark-lint
 
 script:
- - cargo install rustup-toolchain-install-master || echo "rustup-toolchain-install-master already installed"
- - RUSTC_HEAD=`git ls-remote https://github.com/rust-lang/rust.git HEAD | tr -d ",." | tr " \t" "\n" | grep -e "HEAD" -v`
- - rustup-toolchain-install-master $RUSTC_HEAD
- - rustup default $RUSTC_HEAD
  - PATH=$PATH:./node_modules/.bin
- - remark -f README.md > /dev/null
+ - remark -f *.md > /dev/null
  - set -e
  - cargo build --features debugging
  - cargo test --features debugging
@@ -54,9 +50,9 @@ script:
 after_success: |
   #!/bin/bash
   if [ $(uname) == Linux ]; then
-    ./.github/deploy.sh
-  # trigger rebuild of the clippy-service, to keep it up to date with clippy itself
     set -e
+    ./.github/deploy.sh
+    # trigger rebuild of the clippy-service, to keep it up to date with clippy itself
     if [ "$TRAVIS_PULL_REQUEST" == "false" ] &&
        [ "$TRAVIS_REPO_SLUG" == "Manishearth/rust-clippy" ] &&
        [ "$TRAVIS_BRANCH" == "master" ] &&