2015-01-13 16:53:42 +01:00
|
|
|
language: rust
|
2015-09-17 10:01:45 +02:00
|
|
|
sudo: required
|
2015-11-20 18:28:12 +01:00
|
|
|
dist: trusty
|
2015-09-17 10:01:45 +02:00
|
|
|
services:
|
|
|
|
- docker
|
2016-06-10 14:03:23 +02:00
|
|
|
install:
|
2017-03-23 16:09:00 +01:00
|
|
|
- if [ -z "$NO_ADD" ]; then rustup target add $TARGET; fi
|
2015-01-13 16:53:42 +01:00
|
|
|
script:
|
2016-06-10 14:03:23 +02:00
|
|
|
- cargo build
|
|
|
|
- cargo build --no-default-features
|
|
|
|
- cargo generate-lockfile --manifest-path libc-test/Cargo.toml
|
|
|
|
- if [[ $TRAVIS_OS_NAME = "linux" ]]; then
|
|
|
|
sh ci/run-docker.sh $TARGET;
|
2015-11-03 23:22:29 +01:00
|
|
|
else
|
2016-06-10 14:03:23 +02:00
|
|
|
export CARGO_TARGET_DIR=`pwd`/target;
|
|
|
|
sh ci/run.sh $TARGET;
|
2015-11-03 23:22:29 +01:00
|
|
|
fi
|
2016-06-10 14:03:23 +02:00
|
|
|
- rustc ci/style.rs && ./style src
|
2015-09-13 02:02:38 +02:00
|
|
|
env:
|
2015-09-17 09:48:36 +02:00
|
|
|
global:
|
2016-11-19 19:10:43 +01:00
|
|
|
secure: "e2/3QjgRN9atOuSHp22TrYG7QVKcYUWY48Hi9b60w+r1+BhPkTseIJLte7WefRhdXtqpjjUJTooKDhnurFOeHaCT+nmBgiv+FPU893sBl4bhesY4m0vgUJVbNZcs6lTImYekWVb+aqjGdgV/XAgCw7c3kPmrZV0MzGDWL64Xaps="
|
2015-09-17 10:01:45 +02:00
|
|
|
matrix:
|
|
|
|
include:
|
2016-06-10 14:03:23 +02:00
|
|
|
# 1.0.0 compat
|
2015-09-17 10:01:45 +02:00
|
|
|
- os: linux
|
2017-03-23 16:09:00 +01:00
|
|
|
env: TARGET=x86_64-unknown-linux-gnu NO_ADD=1
|
2016-06-10 14:03:23 +02:00
|
|
|
rust: 1.0.0
|
|
|
|
script: cargo build
|
|
|
|
install:
|
|
|
|
|
|
|
|
# build documentation
|
|
|
|
- os: linux
|
2017-03-23 16:09:00 +01:00
|
|
|
env: TARGET=x86_64-unknown-linux-gnu NO_ADD=1
|
2016-12-02 22:33:13 +01:00
|
|
|
rust: nightly
|
2016-06-10 14:03:23 +02:00
|
|
|
script: sh ci/dox.sh
|
|
|
|
|
|
|
|
# stable compat
|
|
|
|
- os: linux
|
2017-03-23 16:09:00 +01:00
|
|
|
env: TARGET=x86_64-unknown-linux-gnu NO_ADD=1
|
2016-06-10 14:03:23 +02:00
|
|
|
rust: stable
|
|
|
|
- os: linux
|
|
|
|
env: TARGET=i686-unknown-linux-gnu
|
|
|
|
rust: stable
|
|
|
|
- os: osx
|
2017-03-23 16:09:00 +01:00
|
|
|
env: TARGET=x86_64-apple-darwin NO_ADD=1
|
2016-06-10 14:03:23 +02:00
|
|
|
rust: stable
|
|
|
|
- os: osx
|
|
|
|
env: TARGET=i686-apple-darwin
|
|
|
|
rust: stable
|
|
|
|
- os: linux
|
|
|
|
env: TARGET=arm-linux-androideabi
|
|
|
|
rust: stable
|
2017-02-24 21:21:56 +01:00
|
|
|
- os: linux
|
|
|
|
env: TARGET=aarch64-linux-android
|
|
|
|
rust: stable
|
|
|
|
- os: linux
|
|
|
|
env: TARGET=i686-linux-android
|
|
|
|
rust: stable
|
2015-09-17 10:01:45 +02:00
|
|
|
- os: linux
|
|
|
|
env: TARGET=x86_64-unknown-linux-musl
|
2016-06-10 14:03:23 +02:00
|
|
|
rust: stable
|
2016-08-27 04:48:54 +02:00
|
|
|
- os: linux
|
|
|
|
env: TARGET=i686-unknown-linux-musl
|
|
|
|
rust: stable
|
2015-09-17 10:01:45 +02:00
|
|
|
- os: linux
|
|
|
|
env: TARGET=arm-unknown-linux-gnueabihf
|
2016-06-10 14:03:23 +02:00
|
|
|
rust: stable
|
2015-09-18 00:18:18 +02:00
|
|
|
- os: linux
|
|
|
|
env: TARGET=aarch64-unknown-linux-gnu
|
2016-06-10 14:03:23 +02:00
|
|
|
rust: stable
|
2015-09-20 08:20:53 +02:00
|
|
|
- os: osx
|
2017-01-17 00:12:06 +01:00
|
|
|
osx_image: xcode8.2
|
2015-09-20 08:20:53 +02:00
|
|
|
env: TARGET=i386-apple-ios
|
2016-06-10 14:03:23 +02:00
|
|
|
rust: stable
|
2015-09-20 08:20:53 +02:00
|
|
|
- os: osx
|
2017-01-17 00:12:06 +01:00
|
|
|
osx_image: xcode8.2
|
2015-09-20 08:20:53 +02:00
|
|
|
env: TARGET=x86_64-apple-ios
|
2016-06-10 14:03:23 +02:00
|
|
|
rust: stable
|
|
|
|
- os: linux
|
|
|
|
env: TARGET=x86_64-rumprun-netbsd
|
|
|
|
rust: stable
|
2016-08-27 07:54:58 +02:00
|
|
|
- os: linux
|
|
|
|
env: TARGET=powerpc-unknown-linux-gnu
|
|
|
|
rust: stable
|
2016-08-27 08:11:45 +02:00
|
|
|
- os: linux
|
|
|
|
env: TARGET=powerpc64-unknown-linux-gnu
|
2016-10-21 02:23:23 +02:00
|
|
|
rust: beta
|
2016-09-12 06:57:37 +02:00
|
|
|
- os: linux
|
|
|
|
env: TARGET=mips-unknown-linux-musl
|
|
|
|
rust: stable
|
2016-08-28 20:53:09 +02:00
|
|
|
- os: linux
|
|
|
|
env: TARGET=mipsel-unknown-linux-musl
|
|
|
|
rust: stable
|
2016-10-14 22:54:45 +02:00
|
|
|
- os: linux
|
|
|
|
env: TARGET=mips64-unknown-linux-gnuabi64
|
2016-12-02 09:02:40 +01:00
|
|
|
rust: beta
|
|
|
|
- os: linux
|
|
|
|
env: TARGET=mips-unknown-linux-gnu
|
|
|
|
rust: beta
|
2016-06-10 14:03:23 +02:00
|
|
|
|
|
|
|
# beta
|
|
|
|
- os: linux
|
2017-03-23 16:09:00 +01:00
|
|
|
env: TARGET=x86_64-unknown-linux-gnu NO_ADD=1
|
2016-06-10 14:03:23 +02:00
|
|
|
rust: beta
|
|
|
|
- os: osx
|
2017-03-23 16:09:00 +01:00
|
|
|
env: TARGET=x86_64-apple-darwin NO_ADD=1
|
2016-06-10 14:03:23 +02:00
|
|
|
rust: beta
|
|
|
|
|
|
|
|
# nightly
|
2015-11-27 18:40:37 +01:00
|
|
|
- os: linux
|
2017-03-23 16:09:00 +01:00
|
|
|
env: TARGET=x86_64-unknown-linux-gnu NO_ADD=1
|
2016-12-02 22:33:13 +01:00
|
|
|
rust: nightly
|
2016-06-10 14:03:23 +02:00
|
|
|
- os: osx
|
2017-03-23 16:09:00 +01:00
|
|
|
env: TARGET=x86_64-apple-darwin NO_ADD=1
|
2016-12-02 22:33:13 +01:00
|
|
|
rust: nightly
|
2016-06-10 14:03:23 +02:00
|
|
|
|
|
|
|
# QEMU based targets that compile in an emulator
|
|
|
|
- os: linux
|
|
|
|
env: TARGET=x86_64-unknown-freebsd
|
|
|
|
rust: stable
|
2016-01-18 20:16:38 +01:00
|
|
|
- os: linux
|
|
|
|
env: TARGET=x86_64-unknown-openbsd QEMU=openbsd.qcow2
|
2016-06-10 14:03:23 +02:00
|
|
|
rust: stable
|
|
|
|
script: sh ci/run-docker.sh $TARGET
|
|
|
|
install:
|
|
|
|
|
2016-11-16 23:12:12 +01:00
|
|
|
cache: cargo
|
|
|
|
|
2015-09-13 07:03:11 +02:00
|
|
|
notifications:
|
|
|
|
email:
|
|
|
|
on_success: never
|
2016-08-27 08:04:58 +02:00
|
|
|
webhooks: https://buildbot.rust-lang.org/homu/travis
|