about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide/ci
diff options
context:
space:
mode:
authorMichael Bryan <michaelfbryan@gmail.com>2018-01-27 14:41:40 +0800
committerNiko Matsakis <niko@alum.mit.edu>2018-01-31 14:13:10 -0500
commitf48a68e481e2ce8eaf90f6471200569030102f3a (patch)
tree1523c0f769580da4e8b3a1e0931b7a85466b1b17 /src/doc/rustc-dev-guide/ci
parent173a1083ea65b498d27ede37d841b02a4c5e7e65 (diff)
downloadrust-f48a68e481e2ce8eaf90f6471200569030102f3a.tar.gz
rust-f48a68e481e2ce8eaf90f6471200569030102f3a.zip
Removed ghp-import and run mdbook build unconditionally
Diffstat (limited to 'src/doc/rustc-dev-guide/ci')
-rw-r--r--src/doc/rustc-dev-guide/ci/github_pages.sh11
-rw-r--r--src/doc/rustc-dev-guide/ci/install.sh7
2 files changed, 0 insertions, 18 deletions
diff --git a/src/doc/rustc-dev-guide/ci/github_pages.sh b/src/doc/rustc-dev-guide/ci/github_pages.sh
deleted file mode 100644
index ffd89ad5227..00000000000
--- a/src/doc/rustc-dev-guide/ci/github_pages.sh
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/bash
-set -ex
-
-BOOK_DIR=book
-
-# Only upload the built book to github pages if it's a commit to master
-if [ "$TRAVIS_BRANCH" = master -a "$TRAVIS_PULL_REQUEST" = false ]; then
-    mdbook build 
-else
-    echo Skipping 'mdbook build' because this is not master or this is just a PR.
-fi
diff --git a/src/doc/rustc-dev-guide/ci/install.sh b/src/doc/rustc-dev-guide/ci/install.sh
index 81cbd8fb72d..99c85986cbb 100644
--- a/src/doc/rustc-dev-guide/ci/install.sh
+++ b/src/doc/rustc-dev-guide/ci/install.sh
@@ -15,10 +15,3 @@ function cargo_install() {
 
 cargo_install mdbook 0.1.1
 cargo_install mdbook-linkcheck 0.1.0
-
-if command -v ghp-import >/dev/null 2>&1; then
-    echo "ghp-import already installed at $(which ghp-import)"
-else
-    echo "installing ghp-import"
-    pip install --user ghp-import
-fi