summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgnzlbg <gonzalobg88@gmail.com>2019-02-20 18:42:34 +0100
committergnzlbg <gonzalobg88@gmail.com>2019-02-20 18:42:34 +0100
commita25a42be76f1e5fb1b86c115b5665a9743076c4d (patch)
tree2b5799558a86b4ca7f45671f249207dc7729c030
parent575fdc8c0db8ed9adeb6d844e51af66770c73a2d (diff)
downloadrust-libc-a25a42be76f1e5fb1b86c115b5665a9743076c4d.tar.gz
Speed up documentation build by using cargo when possible
-rw-r--r--ci/build.sh4
-rw-r--r--ci/dox.sh9
2 files changed, 10 insertions, 3 deletions
diff --git a/ci/build.sh b/ci/build.sh
index 78c65be971..74727a3313 100644
--- a/ci/build.sh
+++ b/ci/build.sh
@@ -32,7 +32,9 @@ test_target() {
n=0
until [ $n -ge $N ]
do
- rustup target add "${TARGET}" --toolchain "${RUST}" && break
+ if rustup target add "${TARGET}" --toolchain "${RUST}" ; then
+ break
+ fi
n=$((n+1))
sleep 1
done
diff --git a/ci/dox.sh b/ci/dox.sh
index ff49298c1a..6c0f1a0c64 100644
--- a/ci/dox.sh
+++ b/ci/dox.sh
@@ -38,8 +38,13 @@ while read -r target; do
esac
rustup target add "${target}" || true
- xargo doc --target "${target}" \
- --no-default-features --features extra_traits
+
+ # If cargo doc fails, then try xargo:
+ if ! cargo doc --target "${target}" \
+ --no-default-features --features extra_traits ; then
+ xargo doc --target "${target}" \
+ --no-default-features --features extra_traits
+ fi
cp -r "target/${target}/doc" "${TARGET_DOC_DIR}/${target}"