compiler-builtins-zynq/.travis.yml

62 lines
1.8 KiB
YAML
Raw Normal View History

cache: cargo
2016-08-14 06:32:08 +08:00
dist: trusty
language: rust
rust: nightly
services: docker
2016-08-14 06:32:08 +08:00
sudo: required
2016-08-08 05:55:30 +08:00
matrix:
include:
- env: TARGET=aarch64-unknown-linux-gnu
- env: TARGET=arm-unknown-linux-gnueabi
- env: TARGET=arm-unknown-linux-gnueabihf
- env: TARGET=armv7-unknown-linux-gnueabihf
2016-08-14 06:43:40 +08:00
- env: TARGET=i586-unknown-linux-gnu
2016-08-08 05:55:30 +08:00
- env: TARGET=i686-apple-darwin
os: osx
- env: TARGET=i686-unknown-linux-gnu
2016-08-09 11:03:44 +08:00
- env: TARGET=mips-unknown-linux-gnu
2016-10-15 09:26:59 +08:00
- env: TARGET=mips64-unknown-linux-gnuabi64
- env: TARGET=mips64el-unknown-linux-gnuabi64
2016-08-09 12:07:33 +08:00
- env: TARGET=mipsel-unknown-linux-gnu
2016-08-09 08:31:37 +08:00
- env: TARGET=powerpc-unknown-linux-gnu
2016-08-09 10:59:31 +08:00
- env: TARGET=powerpc64-unknown-linux-gnu
2016-09-30 07:50:04 +08:00
- env: TARGET=powerpc64le-unknown-linux-gnu
- env: TARGET=thumbv6m-linux-eabi
- env: TARGET=thumbv7em-linux-eabi
- env: TARGET=thumbv7em-linux-eabihf
- env: TARGET=thumbv7m-linux-eabi
2016-08-08 05:55:30 +08:00
- env: TARGET=x86_64-apple-darwin
os: osx
env: TARGET=x86_64-unknown-linux-gnu
before_install:
- test "$TRAVIS_OS_NAME" = "osx" || docker run --rm --privileged multiarch/qemu-user-static:register
2016-08-08 05:55:30 +08:00
install:
- case $TARGET in
x86_64-apple-darwin | x86_64-unknown-linux-gnu) ;;
thumbv*eabi*) rustup component add rust-src ;;
*) rustup target add $TARGET;;
esac
2016-08-08 05:55:30 +08:00
script:
2016-12-12 03:58:05 +08:00
# work around rust-lang/cargo#3340
2016-12-12 04:26:18 +08:00
- test "$TRAVIS_OS_NAME" = "osx" ||
export SSL_CERT_FILE=/etc/ssl/certs/ca-certificates.crt
- cargo generate-lockfile
- if [[ $TRAVIS_OS_NAME = "linux" ]]; then
sudo apt-get remove -y qemu-user-static &&
sudo apt-get install -y qemu-user-static &&
sh ci/run-docker.sh $TARGET;
else
2016-10-06 12:01:58 +08:00
sh ci/run.sh $TARGET;
fi
# Travis can't cache files that are not readable by "others"
2016-10-01 07:25:40 +08:00
- chmod -R a+r $HOME/.cargo
2016-08-08 05:55:30 +08:00
notifications:
email:
on_success: never
2016-10-15 02:44:45 +08:00
webhooks: https://buildbot.rust-lang.org/homu/travis