aboutsummaryrefslogtreecommitdiff
path: root/ci/install.sh
blob: 20bdd5091857d3d29e4fbc5db24f48824e5f1e8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
set -euxo pipefail

main() {
    if [ $TARGET != x86_64-unknown-linux-gnu ]; then
        rustup target add $TARGET
    fi

    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
}

if [ $TRAVIS_BRANCH != master ] || [ $TRAVIS_PULL_REQUEST != false ]; then
    main
fi