mirror of
https://github.com/rust-lang-nursery/rust-cookbook
synced 2024-11-22 19:43:06 +00:00
0c167cb32c
* Added support for additional linters (html-proofer link checker) - added additional test matrix item just for linters - install and build mdbook only when needed to speedup CI - reorganized the travis scripts * Added spellchecking script from rust-book to CI also fixed minor typos * updated and moved serde_json links to propper position * move link checking to link-checker
51 lines
1.3 KiB
Bash
Executable file
51 lines
1.3 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
set -o errexit -o nounset
|
|
|
|
echo "Running $0"
|
|
|
|
if [ -z "${TRAVIS_BRANCH:-}" ]; then
|
|
echo "This script may only be run from Travis!"
|
|
exit 1
|
|
fi
|
|
|
|
# Returns 1 if program is installed and 0 otherwise
|
|
program_installed() {
|
|
local return_=1
|
|
|
|
type $1 >/dev/null 2>&1 || { local return_=0; }
|
|
|
|
echo "$return_"
|
|
}
|
|
|
|
if [[ "${CONTENT_TESTS:-}" == 1 ]]; then
|
|
# Ensure required programs are installed
|
|
if [ $(program_installed mdbook) == 0 ]; then
|
|
echo "Please install mdbook: cargo install mdbook."
|
|
exit 1
|
|
fi
|
|
|
|
echo "Testing markup and descriptions"
|
|
echo "Building site to book/"
|
|
mdbook build
|
|
echo "Checking spelling"
|
|
./ci/spellcheck.sh list
|
|
|
|
if [[ "${CONTENT_TESTS_LINKS:-}" == 1 ]]; then
|
|
if [ $(program_installed link-checker) == 0 ]; then
|
|
echo "Please install link-checker: 'pip install link-checker'"
|
|
exit 1
|
|
fi
|
|
echo "Checking local links:"
|
|
# failing local link test is a hard error as there should be no false possitives
|
|
link-checker --no-external ./book/
|
|
|
|
echo "Checking external links:"
|
|
# we do not want to fail on false positives
|
|
link-checker --no-local ./book/ --ignore '.*api.github.com*.' || true
|
|
fi
|
|
else
|
|
echo "Testing code snippets"
|
|
cargo build --verbose
|
|
cargo test --verbose
|
|
fi
|