From 81275bfa4f41e2066770087f3a33cad4227eab41 Mon Sep 17 00:00:00 2001 From: Jorge Aparicio Date: Thu, 13 Jun 2019 23:56:59 +0200 Subject: rtfm-syntax refactor + heterogeneous multi-core support --- ci/install.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'ci/install.sh') diff --git a/ci/install.sh b/ci/install.sh index 9000772..fea846b 100644 --- a/ci/install.sh +++ b/ci/install.sh @@ -1,10 +1,12 @@ 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 ) 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 -- cgit v1.2.3 From 69729d78eb37420a55b1c96bab322d7952759bed Mon Sep 17 00:00:00 2001 From: Jorge Aparicio Date: Wed, 21 Aug 2019 10:28:45 +0200 Subject: bump mdbook to v0.3.1 --- ci/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ci/install.sh') diff --git a/ci/install.sh b/ci/install.sh index fea846b..ed13cc1 100644 --- a/ci/install.sh +++ b/ci/install.sh @@ -13,7 +13,7 @@ main() { # 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 } -- cgit v1.2.3 From da675dc35f373a38ab97cdc9813162e9d87507f9 Mon Sep 17 00:00:00 2001 From: Jorge Aparicio Date: Wed, 21 Aug 2019 12:46:06 +0200 Subject: ci: install some thumb targets on x86 --- ci/install.sh | 1 + 1 file changed, 1 insertion(+) (limited to 'ci/install.sh') diff --git a/ci/install.sh b/ci/install.sh index ed13cc1..6f8d815 100644 --- a/ci/install.sh +++ b/ci/install.sh @@ -3,6 +3,7 @@ set -euxo pipefail main() { 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 -- cgit v1.2.3