aboutsummaryrefslogtreecommitdiff
path: root/ci/install.sh
diff options
context:
space:
mode:
authorJorge Aparicio <jorge@japaric.io>2019-09-15 17:09:40 +0000
committerGitHub <noreply@github.com>2019-09-15 17:09:40 +0000
commit4ff28e9d13e845abf39c662643ae2ff5df57ec16 (patch)
tree7d9770cd357e584d85ef6ddc32bddd1a937d1020 /ci/install.sh
parentfafeeb27270ef24fc3852711c6032f65aa7dbcc0 (diff)
parent7aa270cb92180abfc9102a69efdde378c3396b5e (diff)
Merge pull request #205 from japaric/heterogeneous
rtfm-syntax refactor + heterogeneous multi-core support
Diffstat (limited to 'ci/install.sh')
-rw-r--r--ci/install.sh9
1 files changed, 6 insertions, 3 deletions
diff --git a/ci/install.sh b/ci/install.sh
index 9000772..6f8d815 100644
--- a/ci/install.sh
+++ b/ci/install.sh
@@ -1,17 +1,20 @@
set -euxo pipefail
main() {
- if [ $TARGET != x86_64-unknown-linux-gnu ]; then
- rustup target add $TARGET
+ if [ $TARGET = x86_64-unknown-linux-gnu ]; then
+ ( cd .. && cargo install microamp-tools --version 0.1.0-alpha.2 -f )
+ rustup target add thumbv6m-none-eabi thumbv7m-none-eabi
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
# install mdbook
curl -LSfs https://japaric.github.io/trust/install.sh | \
- sh -s -- --git rust-lang-nursery/mdbook --tag v0.2.1
+ sh -s -- --git rust-lang-nursery/mdbook --tag v0.3.1
pip install linkchecker --user
}