rtic/ci/install.sh

16 lines
374 B
Bash
Raw Normal View History

2017-07-27 22:02:25 +02:00
set -euxo pipefail
2017-04-12 06:12:06 +02:00
main() {
2018-04-16 21:44:02 +02:00
if [ $TARGET != x86_64-unknown-linux-gnu ]; then
rustup target add $TARGET
fi
2018-08-24 16:36:33 +02:00
2018-11-03 17:02:41 +01: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
2017-04-12 06:12:06 +02:00
}
2018-11-03 17:23:04 +01:00
if [ $TRAVIS_BRANCH != master ] || [ $TRAVIS_PULL_REQUEST != false ]; then
2018-11-03 17:02:41 +01:00
main
fi