2017-07-27 22:02:25 +02:00
|
|
|
set -euxo pipefail
|
2017-04-12 06:12:06 +02:00
|
|
|
|
|
|
|
main() {
|
2019-09-15 21:58:03 +02:00
|
|
|
# these are not needed for doc builds
|
|
|
|
if [ $TRAVIS_BRANCH != master ] || [ $TRAVIS_PULL_REQUEST != false ]; then
|
|
|
|
if [ $TARGET = x86_64-unknown-linux-gnu ]; then
|
2019-09-15 22:28:52 +02:00
|
|
|
( cd .. && cargo install microamp-tools --version 0.1.0-alpha.2 -f )
|
2019-09-15 21:58:03 +02:00
|
|
|
rustup target add thumbv6m-none-eabi thumbv7m-none-eabi
|
|
|
|
fi
|
|
|
|
|
|
|
|
rustup target add $TARGET
|
2018-08-24 16:36:33 +02:00
|
|
|
|
2019-09-15 21:58:03 +02:00
|
|
|
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
|
2019-06-13 23:56:59 +02:00
|
|
|
|
2019-09-15 21:58:03 +02:00
|
|
|
pip install linkchecker --user
|
|
|
|
fi
|
2018-11-03 18:58:25 +01:00
|
|
|
|
|
|
|
# install mdbook
|
|
|
|
curl -LSfs https://japaric.github.io/trust/install.sh | \
|
2019-08-21 10:28:45 +02:00
|
|
|
sh -s -- --git rust-lang-nursery/mdbook --tag v0.3.1
|
2017-04-12 06:12:06 +02:00
|
|
|
}
|
|
|
|
|
2018-11-03 18:58:25 +01:00
|
|
|
main
|