compiler-builtins-zynq/.travis.yml

95 lines
2.0 KiB
YAML
Raw Normal View History

2016-08-08 05:55:30 +08:00
language: generic
2016-08-08 06:10:36 +08:00
sudo: false
2016-08-08 05:55:30 +08:00
matrix:
include:
- env: TARGET=aarch64-unknown-linux-gnu
os: linux
dist: trusty
sudo: required
addons:
apt:
packages:
- binfmt-support
- qemu-user-static
- env: TARGET=arm-unknown-linux-gnueabi
os: linux
sudo: required
addons:
apt:
packages:
- binfmt-support
- gcc-arm-linux-gnueabi
- libc6-armel-cross
2016-08-08 06:07:12 +08:00
- libc6-dev-armel-cross
2016-08-08 05:55:30 +08:00
- qemu-user-static
- env: TARGET=arm-unknown-linux-gnueabihf
os: linux
sudo: required
addons:
apt:
packages: &armhf
- binfmt-support
- gcc-arm-linux-gnueabihf
- libc6-armhf-cross
2016-08-08 06:07:12 +08:00
- libc6-dev-armhf-cross
2016-08-08 05:55:30 +08:00
- qemu-user-static
- env: TARGET=armv7-unknown-linux-gnueabihf
os: linux
sudo: required
addons:
apt:
packages: *armhf
- env: TARGET=i686-apple-darwin
os: osx
- env: TARGET=i686-unknown-linux-gnu
os: linux
addons:
apt:
packages:
- gcc-multilib
2016-08-09 08:31:37 +08:00
- env: TARGET=powerpc-unknown-linux-gnu
os: linux
2016-08-09 08:36:20 +08:00
dist: trusty
2016-08-09 08:31:37 +08:00
sudo: required
addons:
apt:
packages:
- binfmt-support
- gcc-powerpc-linux-gnu
- libc6-powerpc-cross
- libc6-dev-powerpc-cross
- qemu-user-static
2016-08-09 10:57:18 +08:00
- env: TARGET=powerpc64le-unknown-linux-gnu
os: linux
services: docker
sudo: required
2016-08-08 05:55:30 +08:00
- env: TARGET=x86_64-apple-darwin
os: osx
- env: TARGET=x86_64-unknown-linux-gnu
os: linux
allow_failures:
# FIXME(#2)
- env: TARGET=armv7-unknown-linux-gnueabihf
os: linux
2016-08-09 10:57:18 +08:00
# FIXME QEMU blows up
- env: TARGET=powerpc64le-unknown-linux-gnu
os: linux
2016-08-08 05:55:30 +08:00
2016-08-08 05:58:44 +08:00
before_install:
- export PATH="$PATH:$HOME/.cargo/bin"
2016-08-08 05:55:30 +08:00
install:
- bash ci/install.sh
script:
- bash ci/script.sh
2016-08-08 05:59:54 +08:00
branches:
only:
- master
2016-08-08 05:55:30 +08:00
notifications:
email:
on_success: never