aboutsummaryrefslogtreecommitdiff
path: root/ci
diff options
context:
space:
mode:
authorbors[bot] <bors[bot]@users.noreply.github.com>2018-11-03 18:48:16 +0000
committerbors[bot] <bors[bot]@users.noreply.github.com>2018-11-03 18:48:16 +0000
commitfc2c5e77cc39320adc6865a464d08c31c1b17ec0 (patch)
tree0f5b1b36ca69376e607074cabf0168b9f5ea3759 /ci
parenta7d8084aeea2f0697c9f93c2789773ea79d4db0c (diff)
parent9ddf3bf8e79c9bca2a261a14c5adc3ac9472f3c3 (diff)
Merge #98
98: ci: run linkchecker r=japaric a=japaric Co-authored-by: Jorge Aparicio <jorge@japaric.io>
Diffstat (limited to 'ci')
-rw-r--r--ci/install.sh2
-rw-r--r--ci/script.sh16
2 files changed, 18 insertions, 0 deletions
diff --git a/ci/install.sh b/ci/install.sh
index 0d5e221..9000772 100644
--- a/ci/install.sh
+++ b/ci/install.sh
@@ -12,6 +12,8 @@ main() {
# install mdbook
curl -LSfs https://japaric.github.io/trust/install.sh | \
sh -s -- --git rust-lang-nursery/mdbook --tag v0.2.1
+
+ pip install linkchecker --user
}
main
diff --git a/ci/script.sh b/ci/script.sh
index 5fc3ca2..4c86d14 100644
--- a/ci/script.sh
+++ b/ci/script.sh
@@ -12,6 +12,22 @@ main() {
cargo check --target $T
cargo check --features timer-queue --target $T
+
+ if [ $TRAVIS_RUST_VERSION = beta ]; then
+ rm -f .cargo/config
+ cargo doc --features timer-queue
+ ( cd book && mdbook build )
+
+ local td=$(mktemp -d)
+ cp -r target/doc $td/api
+ cp -r book/book $td/
+ cp LICENSE-* $td/book/
+
+ linkchecker $td/book/
+ linkchecker $td/api/rtfm/
+ linkchecker $td/api/cortex_m_rtfm_macros/
+ fi
+
return
fi