aboutsummaryrefslogtreecommitdiff
path: root/ci/install.sh
blob: 6f8d81514296e5954b2f86f6a858ac72e544e3e8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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

    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.3.1

    pip install linkchecker --user
}

main