From 7e01b1a08e1c33829abac6dabbed360fc5f8c597 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Tj=C3=A4der?= Date: Tue, 2 Jun 2020 19:58:56 +0000 Subject: [PATCH 1/2] Use statically compiled mdbook --- ci/install.sh | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/ci/install.sh b/ci/install.sh index 54701224ae..9b79075d10 100644 --- a/ci/install.sh +++ b/ci/install.sh @@ -15,7 +15,6 @@ main() { fi rustup target add $TARGET - mkdir qemu curl -L https://github.com/japaric/qemu-bin/raw/master/14.04/qemu-system-arm-2.12.0 > qemu/qemu-system-arm chmod +x qemu/qemu-system-arm @@ -23,7 +22,15 @@ main() { pip install linkchecker --user fi - install_crate mdbook 0.3.1 + # Download binary mdbook and add to path + curl -L https://github.com/rust-lang/mdBook/releases/download/v0.3.1/mdbook-v0.3.1-x86_64-unknown-linux-gnu.tar.gz > mdbook.tar.gz + tar -xf mdbook.tar.gz + mkdir -p mdbook-bin + mv mdbook mdbook-bin/ + PATH=$(pwd)/mdbook-bin:$PATH + which mdbook + + #install_crate mdbook 0.3.1 } main From f6bce2110fe9ef58a20a90f8679b82d1f4fead35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Tj=C3=A4der?= Date: Tue, 2 Jun 2020 20:25:33 +0000 Subject: [PATCH 2/2] Use travis to set the PATH properly --- .travis.yml | 1 + ci/install.sh | 2 -- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 1bb250512e..c26513077f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -37,6 +37,7 @@ before_install: install: - bash ci/install.sh - export PATH="$PATH:$PWD/qemu" + - export PATH="$PATH:$PWD/mdbook-bin" script: - bash ci/script.sh diff --git a/ci/install.sh b/ci/install.sh index 9b79075d10..624efd87fb 100644 --- a/ci/install.sh +++ b/ci/install.sh @@ -27,8 +27,6 @@ main() { tar -xf mdbook.tar.gz mkdir -p mdbook-bin mv mdbook mdbook-bin/ - PATH=$(pwd)/mdbook-bin:$PATH - which mdbook #install_crate mdbook 0.3.1 }