2017-07-13 00:34:18 +02:00
|
|
|
language: shell
|
2015-09-18 19:19:23 +02:00
|
|
|
sudo: required
|
2016-10-11 21:21:40 +02:00
|
|
|
dist: trusty
|
2016-06-01 17:14:22 +02:00
|
|
|
services:
|
|
|
|
- docker
|
2014-02-21 00:37:44 +01:00
|
|
|
|
2015-09-18 19:19:23 +02:00
|
|
|
git:
|
2016-07-28 11:48:43 +02:00
|
|
|
depth: 1
|
2016-10-11 21:21:40 +02:00
|
|
|
submodules: false
|
2015-07-14 02:29:01 +02:00
|
|
|
|
2016-10-11 21:21:40 +02:00
|
|
|
matrix:
|
2017-01-20 02:18:12 +01:00
|
|
|
fast_finish: true
|
2016-10-11 21:21:40 +02:00
|
|
|
include:
|
2017-07-15 18:10:26 +02:00
|
|
|
# Images used in testing PR and try-build should be run first.
|
2017-09-16 13:28:08 +02:00
|
|
|
- env: IMAGE=x86_64-gnu-llvm-3.7 RUST_BACKTRACE=1
|
|
|
|
if: type = pull_request OR branch = auto
|
|
|
|
|
|
|
|
- env: IMAGE=dist-x86_64-linux DEPLOY=1
|
|
|
|
if: branch = try OR branch = auto
|
2017-07-15 18:10:26 +02:00
|
|
|
|
|
|
|
# "alternate" deployments, these are "nightlies" but don't have assertions
|
|
|
|
# turned on, they're deployed to a different location primarily for projects
|
|
|
|
# which are stuck on nightly and don't want llvm assertions in the artifacts
|
|
|
|
# that they use.
|
|
|
|
- env: IMAGE=dist-x86_64-linux DEPLOY_ALT=1
|
2017-09-16 13:28:08 +02:00
|
|
|
if: branch = auto
|
|
|
|
|
2017-07-15 18:10:26 +02:00
|
|
|
- env: >
|
|
|
|
RUST_CHECK_TARGET=dist
|
|
|
|
RUST_CONFIGURE_ARGS="--enable-extended --enable-profiler"
|
|
|
|
SRC=.
|
|
|
|
DEPLOY_ALT=1
|
|
|
|
RUSTC_RETRY_LINKER_ON_SEGFAULT=1
|
|
|
|
SCCACHE_ERROR_LOG=/tmp/sccache.log
|
|
|
|
MACOSX_DEPLOYMENT_TARGET=10.7
|
2017-09-15 19:34:05 +02:00
|
|
|
NO_LLVM_ASSERTIONS=1
|
2017-09-17 02:25:12 +02:00
|
|
|
NO_DEBUG_ASSERTIONS=1
|
2017-07-15 18:10:26 +02:00
|
|
|
os: osx
|
|
|
|
osx_image: xcode7
|
2017-09-16 13:28:08 +02:00
|
|
|
if: branch = auto
|
2017-07-15 18:10:26 +02:00
|
|
|
|
|
|
|
# macOS builders. These are placed near the beginning because they are very
|
|
|
|
# slow to run.
|
2016-10-11 21:21:40 +02:00
|
|
|
|
2017-03-31 20:04:25 +02:00
|
|
|
# OSX builders running tests, these run the full test suite.
|
|
|
|
#
|
|
|
|
# Note that the compiler is compiled to target 10.8 here because the Xcode
|
|
|
|
# version that we're using, 8.2, cannot compile LLVM for OSX 10.7.
|
2016-10-11 21:21:40 +02:00
|
|
|
- env: >
|
|
|
|
RUST_CHECK_TARGET=check
|
2017-06-06 19:09:33 +02:00
|
|
|
RUST_CONFIGURE_ARGS="--build=x86_64-apple-darwin --enable-sanitizers --enable-profiler"
|
2016-10-11 21:21:40 +02:00
|
|
|
SRC=.
|
2017-03-10 18:04:27 +01:00
|
|
|
RUSTC_RETRY_LINKER_ON_SEGFAULT=1
|
2017-03-11 18:06:44 +01:00
|
|
|
SCCACHE_ERROR_LOG=/tmp/sccache.log
|
2017-03-13 19:36:44 +01:00
|
|
|
MACOSX_DEPLOYMENT_TARGET=10.8
|
|
|
|
MACOSX_STD_DEPLOYMENT_TARGET=10.7
|
2017-09-15 19:34:05 +02:00
|
|
|
NO_LLVM_ASSERTIONS=1
|
2017-09-17 02:25:12 +02:00
|
|
|
NO_DEBUG_ASSERTIONS=1
|
2016-10-11 21:21:40 +02:00
|
|
|
os: osx
|
2017-01-17 03:43:38 +01:00
|
|
|
osx_image: xcode8.2
|
2017-09-16 13:28:08 +02:00
|
|
|
if: branch = auto
|
|
|
|
|
2017-02-10 21:59:40 +01:00
|
|
|
- env: >
|
|
|
|
RUST_CHECK_TARGET=check
|
|
|
|
RUST_CONFIGURE_ARGS=--build=i686-apple-darwin
|
|
|
|
SRC=.
|
2017-03-10 18:04:27 +01:00
|
|
|
RUSTC_RETRY_LINKER_ON_SEGFAULT=1
|
2017-03-11 18:06:44 +01:00
|
|
|
SCCACHE_ERROR_LOG=/tmp/sccache.log
|
2017-03-13 19:36:44 +01:00
|
|
|
MACOSX_DEPLOYMENT_TARGET=10.8
|
|
|
|
MACOSX_STD_DEPLOYMENT_TARGET=10.7
|
2017-09-15 19:34:05 +02:00
|
|
|
NO_LLVM_ASSERTIONS=1
|
2017-09-17 02:25:12 +02:00
|
|
|
NO_DEBUG_ASSERTIONS=1
|
2017-02-10 21:59:40 +01:00
|
|
|
os: osx
|
|
|
|
osx_image: xcode8.2
|
2017-09-16 13:28:08 +02:00
|
|
|
if: branch = auto
|
2017-01-12 23:58:55 +01:00
|
|
|
|
2017-03-31 20:04:25 +02:00
|
|
|
# OSX builders producing releases. These do not run the full test suite and
|
|
|
|
# just produce a bunch of artifacts.
|
|
|
|
#
|
|
|
|
# Note that these are running in the `xcode7` image instead of the
|
|
|
|
# `xcode8.2` image as above. That's because we want to build releases for
|
|
|
|
# OSX 10.7 and `xcode7` is the latest Xcode able to compile LLVM for 10.7.
|
2016-10-11 21:21:40 +02:00
|
|
|
- env: >
|
2017-02-10 21:59:40 +01:00
|
|
|
RUST_CHECK_TARGET=dist
|
2017-06-06 19:09:33 +02:00
|
|
|
RUST_CONFIGURE_ARGS="--build=i686-apple-darwin --enable-extended --enable-profiler"
|
2016-10-11 21:21:40 +02:00
|
|
|
SRC=.
|
2017-01-01 02:42:40 +01:00
|
|
|
DEPLOY=1
|
2017-03-10 18:04:27 +01:00
|
|
|
RUSTC_RETRY_LINKER_ON_SEGFAULT=1
|
2017-03-11 18:06:44 +01:00
|
|
|
SCCACHE_ERROR_LOG=/tmp/sccache.log
|
2017-03-31 20:04:25 +02:00
|
|
|
MACOSX_DEPLOYMENT_TARGET=10.7
|
2017-09-15 19:34:05 +02:00
|
|
|
NO_LLVM_ASSERTIONS=1
|
2017-09-17 02:25:12 +02:00
|
|
|
NO_DEBUG_ASSERTIONS=1
|
2016-10-11 21:21:40 +02:00
|
|
|
os: osx
|
2017-03-31 20:04:25 +02:00
|
|
|
osx_image: xcode7
|
2017-09-16 13:28:08 +02:00
|
|
|
if: branch = auto
|
|
|
|
|
2016-10-11 21:21:40 +02:00
|
|
|
- env: >
|
2017-01-01 02:42:40 +01:00
|
|
|
RUST_CHECK_TARGET=dist
|
2017-06-06 19:09:33 +02:00
|
|
|
RUST_CONFIGURE_ARGS="--target=aarch64-apple-ios,armv7-apple-ios,armv7s-apple-ios,i386-apple-ios,x86_64-apple-ios --enable-extended --enable-sanitizers --enable-profiler"
|
2016-10-11 21:21:40 +02:00
|
|
|
SRC=.
|
2017-01-01 02:42:40 +01:00
|
|
|
DEPLOY=1
|
2017-03-10 18:04:27 +01:00
|
|
|
RUSTC_RETRY_LINKER_ON_SEGFAULT=1
|
2017-03-11 18:06:44 +01:00
|
|
|
SCCACHE_ERROR_LOG=/tmp/sccache.log
|
2017-03-31 20:04:25 +02:00
|
|
|
MACOSX_DEPLOYMENT_TARGET=10.7
|
2017-09-15 19:34:05 +02:00
|
|
|
NO_LLVM_ASSERTIONS=1
|
2017-09-17 02:25:12 +02:00
|
|
|
NO_DEBUG_ASSERTIONS=1
|
2016-10-11 21:21:40 +02:00
|
|
|
os: osx
|
2017-03-31 20:04:25 +02:00
|
|
|
osx_image: xcode7
|
2017-09-16 13:28:08 +02:00
|
|
|
if: branch = auto
|
2016-12-12 20:36:52 +01:00
|
|
|
|
2017-07-15 18:10:26 +02:00
|
|
|
# Linux builders, remaining docker images
|
|
|
|
- env: IMAGE=arm-android
|
2017-09-16 13:28:08 +02:00
|
|
|
if: branch = auto
|
2017-07-15 18:10:26 +02:00
|
|
|
- env: IMAGE=armhf-gnu
|
2017-09-16 13:28:08 +02:00
|
|
|
if: branch = auto
|
2017-07-15 18:10:26 +02:00
|
|
|
- env: IMAGE=cross DEPLOY=1
|
2017-09-16 13:28:08 +02:00
|
|
|
if: branch = auto
|
2017-10-05 01:22:30 +02:00
|
|
|
- env: IMAGE=cross2 DEPLOY=1
|
2017-10-05 20:42:27 +02:00
|
|
|
if: branch = auto
|
2017-07-15 18:10:26 +02:00
|
|
|
- env: IMAGE=dist-aarch64-linux DEPLOY=1
|
2017-09-16 13:28:08 +02:00
|
|
|
if: branch = auto
|
2017-07-15 18:10:26 +02:00
|
|
|
- env: IMAGE=dist-android DEPLOY=1
|
2017-09-16 13:28:08 +02:00
|
|
|
if: branch = auto
|
2017-07-15 18:10:26 +02:00
|
|
|
- env: IMAGE=dist-arm-linux DEPLOY=1
|
2017-09-16 13:28:08 +02:00
|
|
|
if: branch = auto
|
2017-07-15 18:10:26 +02:00
|
|
|
- env: IMAGE=dist-armhf-linux DEPLOY=1
|
2017-09-16 13:28:08 +02:00
|
|
|
if: branch = auto
|
2017-07-15 18:10:26 +02:00
|
|
|
- env: IMAGE=dist-armv7-linux DEPLOY=1
|
2017-09-16 13:28:08 +02:00
|
|
|
if: branch = auto
|
2017-07-15 18:10:26 +02:00
|
|
|
- env: IMAGE=dist-i586-gnu-i686-musl DEPLOY=1
|
2017-09-16 13:28:08 +02:00
|
|
|
if: branch = auto
|
2017-07-15 18:10:26 +02:00
|
|
|
- env: IMAGE=dist-i686-freebsd DEPLOY=1
|
2017-09-16 13:28:08 +02:00
|
|
|
if: branch = auto
|
2017-07-15 18:10:26 +02:00
|
|
|
- env: IMAGE=dist-i686-linux DEPLOY=1
|
2017-09-16 13:28:08 +02:00
|
|
|
if: branch = auto
|
2017-07-15 18:10:26 +02:00
|
|
|
- env: IMAGE=dist-mips-linux DEPLOY=1
|
2017-09-16 13:28:08 +02:00
|
|
|
if: branch = auto
|
2017-07-15 18:10:26 +02:00
|
|
|
- env: IMAGE=dist-mips64-linux DEPLOY=1
|
2017-09-16 13:28:08 +02:00
|
|
|
if: branch = auto
|
2017-07-15 18:10:26 +02:00
|
|
|
- env: IMAGE=dist-mips64el-linux DEPLOY=1
|
2017-09-16 13:28:08 +02:00
|
|
|
if: branch = auto
|
2017-07-15 18:10:26 +02:00
|
|
|
- env: IMAGE=dist-mipsel-linux DEPLOY=1
|
2017-09-16 13:28:08 +02:00
|
|
|
if: branch = auto
|
2017-07-15 18:10:26 +02:00
|
|
|
- env: IMAGE=dist-powerpc-linux DEPLOY=1
|
2017-09-16 13:28:08 +02:00
|
|
|
if: branch = auto
|
2017-07-15 18:10:26 +02:00
|
|
|
- env: IMAGE=dist-powerpc64-linux DEPLOY=1
|
2017-09-16 13:28:08 +02:00
|
|
|
if: branch = auto
|
2017-07-15 18:10:26 +02:00
|
|
|
- env: IMAGE=dist-powerpc64le-linux DEPLOY=1
|
2017-09-16 13:28:08 +02:00
|
|
|
if: branch = auto
|
2017-07-15 18:10:26 +02:00
|
|
|
- env: IMAGE=dist-s390x-linux DEPLOY=1
|
2017-09-16 13:28:08 +02:00
|
|
|
if: branch = auto
|
2017-07-15 18:10:26 +02:00
|
|
|
- env: IMAGE=dist-x86_64-freebsd DEPLOY=1
|
2017-09-16 13:28:08 +02:00
|
|
|
if: branch = auto
|
2017-07-15 18:10:26 +02:00
|
|
|
- env: IMAGE=dist-x86_64-musl DEPLOY=1
|
2017-09-16 13:28:08 +02:00
|
|
|
if: branch = auto
|
2017-07-15 18:10:26 +02:00
|
|
|
- env: IMAGE=dist-x86_64-netbsd DEPLOY=1
|
2017-09-16 13:28:08 +02:00
|
|
|
if: branch = auto
|
2017-07-15 18:10:26 +02:00
|
|
|
- env: IMAGE=asmjs
|
2017-09-16 13:28:08 +02:00
|
|
|
if: branch = auto
|
2017-07-15 18:10:26 +02:00
|
|
|
- env: IMAGE=i686-gnu
|
2017-09-16 13:28:08 +02:00
|
|
|
if: branch = auto
|
2017-07-15 18:10:26 +02:00
|
|
|
- env: IMAGE=i686-gnu-nopt
|
2017-09-16 13:28:08 +02:00
|
|
|
if: branch = auto
|
2017-07-15 18:10:26 +02:00
|
|
|
# - env: IMAGE=wasm32 issue 42646
|
2017-09-16 13:28:08 +02:00
|
|
|
# if: branch = auto
|
2017-07-15 18:10:26 +02:00
|
|
|
- env: IMAGE=x86_64-gnu
|
2017-09-16 13:28:08 +02:00
|
|
|
if: branch = auto
|
2017-07-15 18:10:26 +02:00
|
|
|
- env: IMAGE=x86_64-gnu-full-bootstrap
|
2017-09-16 13:28:08 +02:00
|
|
|
if: branch = auto
|
2017-07-15 18:10:26 +02:00
|
|
|
- env: IMAGE=x86_64-gnu-aux
|
2017-09-16 13:28:08 +02:00
|
|
|
if: branch = auto
|
2017-07-15 18:10:26 +02:00
|
|
|
- env: IMAGE=x86_64-gnu-debug
|
2017-09-16 13:28:08 +02:00
|
|
|
if: branch = auto
|
2017-07-15 18:10:26 +02:00
|
|
|
- env: IMAGE=x86_64-gnu-nopt
|
2017-09-16 13:28:08 +02:00
|
|
|
if: branch = auto
|
2017-07-15 18:10:26 +02:00
|
|
|
- env: IMAGE=x86_64-gnu-distcheck
|
2017-09-16 13:28:08 +02:00
|
|
|
if: branch = auto
|
2017-07-15 18:10:26 +02:00
|
|
|
- env: IMAGE=x86_64-gnu-incremental
|
2017-09-16 13:28:08 +02:00
|
|
|
if: branch = auto
|
2017-02-12 02:28:29 +01:00
|
|
|
|
2016-12-12 20:36:52 +01:00
|
|
|
env:
|
|
|
|
global:
|
2017-09-14 22:17:25 +02:00
|
|
|
- SCCACHE_BUCKET=rust-lang-ci-sccache2
|
|
|
|
- SCCACHE_REGION=us-west-1
|
2017-09-07 07:47:56 +02:00
|
|
|
- AWS_ACCESS_KEY_ID=AKIAJAMV3QAMMA6AXHFQ
|
2016-12-12 20:36:52 +01:00
|
|
|
# AWS_SECRET_ACCESS_KEY=...
|
2017-09-07 07:47:56 +02:00
|
|
|
- secure: "j96XxTVOSUf4s4r4htIxn/fvIa5DWbMgLqWl7r8z2QfgUwscmkMXAwXuFNc7s7bGTpV/+CgDiMFFM6BAFLGKutytIF6oA02s9b+usQYnM0th7YQ2AIgm9GtMTJCJp4AoyfFmh8F2faUICBZlfVLUJ34udHEe35vOklix+0k4WDo="
|
2015-10-19 03:37:14 +02:00
|
|
|
|
2017-07-15 18:10:26 +02:00
|
|
|
before_install:
|
2017-09-16 13:28:08 +02:00
|
|
|
- zcat $HOME/docker/rust-ci.tar.gz | docker load || true
|
2017-07-15 18:10:26 +02:00
|
|
|
- mkdir -p $HOME/rustsrc
|
|
|
|
|
|
|
|
install:
|
2017-09-16 13:28:08 +02:00
|
|
|
- case "$TRAVIS_OS_NAME" in
|
2017-07-15 18:10:26 +02:00
|
|
|
linux)
|
2017-09-16 01:04:13 +02:00
|
|
|
travis_retry curl -fo $HOME/stamp https://s3-us-west-1.amazonaws.com/rust-lang-ci2/rust-ci-mirror/2017-03-17-stamp-x86_64-unknown-linux-musl &&
|
2017-07-15 18:10:26 +02:00
|
|
|
chmod +x $HOME/stamp &&
|
|
|
|
export PATH=$PATH:$HOME
|
|
|
|
;;
|
|
|
|
osx)
|
|
|
|
if [[ "$RUST_CHECK_TARGET" == dist ]]; then
|
|
|
|
travis_retry brew update &&
|
|
|
|
travis_retry brew install xz;
|
|
|
|
fi &&
|
2017-09-16 01:04:13 +02:00
|
|
|
travis_retry curl -fo /usr/local/bin/sccache https://s3-us-west-1.amazonaws.com/rust-lang-ci2/rust-ci-mirror/2017-05-12-sccache-x86_64-apple-darwin &&
|
2017-07-15 18:10:26 +02:00
|
|
|
chmod +x /usr/local/bin/sccache &&
|
2017-09-16 01:04:13 +02:00
|
|
|
travis_retry curl -fo /usr/local/bin/stamp https://s3-us-west-1.amazonaws.com/rust-lang-ci2/rust-ci-mirror/2017-03-17-stamp-x86_64-apple-darwin &&
|
2017-07-15 18:10:26 +02:00
|
|
|
chmod +x /usr/local/bin/stamp
|
|
|
|
;;
|
2017-09-16 13:28:08 +02:00
|
|
|
esac
|
2017-03-17 17:31:28 +01:00
|
|
|
|
2017-03-08 21:19:33 +01:00
|
|
|
before_script:
|
|
|
|
- >
|
|
|
|
echo "#### Disk usage before running script:";
|
|
|
|
df -h;
|
|
|
|
du . | sort -nr | head -n100
|
2016-11-16 21:31:19 +01:00
|
|
|
- >
|
2017-07-15 18:10:26 +02:00
|
|
|
RUN_SCRIPT="src/ci/init_repo.sh . $HOME/rustsrc";
|
|
|
|
if [ "$TRAVIS_OS_NAME" = "osx" ]; then
|
|
|
|
export RUN_SCRIPT="$RUN_SCRIPT && src/ci/run.sh";
|
2017-06-03 20:49:03 +02:00
|
|
|
else
|
2017-07-15 18:10:26 +02:00
|
|
|
export RUN_SCRIPT="$RUN_SCRIPT && src/ci/docker/run.sh $IMAGE";
|
2016-11-16 21:31:19 +01:00
|
|
|
fi
|
2014-03-06 06:17:15 +01:00
|
|
|
|
2017-06-29 00:05:29 +02:00
|
|
|
# Log time information from this machine and an external machine for insight into possible
|
|
|
|
# clock drift. Timezones don't matter since relative deltas give all the necessary info.
|
2017-05-17 18:33:20 +02:00
|
|
|
script:
|
2017-06-29 00:05:29 +02:00
|
|
|
- >
|
2017-07-17 19:55:27 +02:00
|
|
|
date && (curl -fs --head https://google.com | grep ^Date: | sed 's/Date: //g' || true)
|
2017-06-28 23:54:05 +02:00
|
|
|
- stamp sh -x -c "$RUN_SCRIPT"
|
2017-06-29 00:05:29 +02:00
|
|
|
- >
|
2017-07-17 19:55:27 +02:00
|
|
|
date && (curl -fs --head https://google.com | grep ^Date: | sed 's/Date: //g' || true)
|
2017-05-17 18:33:20 +02:00
|
|
|
|
2017-03-08 21:19:33 +01:00
|
|
|
after_success:
|
|
|
|
- >
|
|
|
|
echo "#### Build successful; Disk usage after running script:";
|
|
|
|
df -h;
|
|
|
|
du . | sort -nr | head -n100
|
|
|
|
|
|
|
|
after_failure:
|
|
|
|
- >
|
|
|
|
echo "#### Build failed; Disk usage after running script:";
|
|
|
|
df -h;
|
|
|
|
du . | sort -nr | head -n100
|
2017-03-23 20:00:50 +01:00
|
|
|
|
|
|
|
# One of these is the linux sccache log, one is the OSX sccache log. Instead
|
|
|
|
# of worrying about what system we are just cat both. One of these commands
|
|
|
|
# will fail but that's ok, they'll both get executed.
|
2017-03-07 18:08:03 +01:00
|
|
|
- cat obj/tmp/sccache.log
|
2017-03-11 18:06:44 +01:00
|
|
|
- cat /tmp/sccache.log
|
2017-03-08 21:19:33 +01:00
|
|
|
|
2017-03-23 20:00:50 +01:00
|
|
|
# Random attempt at debugging currently. Just poking around in here to see if
|
|
|
|
# anything shows up.
|
|
|
|
- ls $HOME/Library/Logs/DiagnosticReports/
|
|
|
|
|
2017-03-23 20:33:24 +01:00
|
|
|
# attempt to debug anything killed by the oom killer on linux, just to see if
|
|
|
|
# it happened
|
|
|
|
- dmesg | grep -i kill
|
|
|
|
|
2016-10-11 21:21:40 +02:00
|
|
|
# Save tagged docker images we created and load them if they're available
|
2017-03-24 00:33:15 +01:00
|
|
|
# Travis saves caches whether the build failed or not, nuke rustsrc if
|
2017-05-06 16:06:38 +02:00
|
|
|
# the failure was while updating it (as it may be in a bad state)
|
2017-03-24 00:33:15 +01:00
|
|
|
# https://github.com/travis-ci/travis-ci/issues/4472
|
2016-10-11 21:21:40 +02:00
|
|
|
before_cache:
|
|
|
|
- docker history -q rust-ci |
|
|
|
|
grep -v missing |
|
|
|
|
xargs docker save |
|
2016-12-26 06:56:07 +01:00
|
|
|
gzip > $HOME/docker/rust-ci.tar.gz
|
2015-06-11 11:26:19 +02:00
|
|
|
|
2014-03-06 06:17:15 +01:00
|
|
|
notifications:
|
|
|
|
email: false
|
|
|
|
|
2016-10-11 21:21:40 +02:00
|
|
|
cache:
|
|
|
|
directories:
|
|
|
|
- $HOME/docker
|
2017-01-01 02:42:40 +01:00
|
|
|
|
|
|
|
before_deploy:
|
|
|
|
- mkdir -p deploy/$TRAVIS_COMMIT
|
|
|
|
- >
|
|
|
|
if [ "$TRAVIS_OS_NAME" == "osx" ]; then
|
2017-01-31 00:21:32 +01:00
|
|
|
rm -rf build/dist/doc &&
|
2017-01-28 19:24:42 +01:00
|
|
|
cp -r build/dist/* deploy/$TRAVIS_COMMIT;
|
2017-01-01 02:42:40 +01:00
|
|
|
else
|
2017-01-31 00:21:32 +01:00
|
|
|
rm -rf obj/build/dist/doc &&
|
2017-01-28 19:24:42 +01:00
|
|
|
cp -r obj/build/dist/* deploy/$TRAVIS_COMMIT;
|
2017-01-01 02:42:40 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
deploy:
|
|
|
|
- provider: s3
|
2017-09-16 01:04:13 +02:00
|
|
|
bucket: rust-lang-ci2
|
2017-01-01 02:42:40 +01:00
|
|
|
skip_cleanup: true
|
|
|
|
local_dir: deploy
|
|
|
|
upload_dir: rustc-builds
|
|
|
|
acl: public_read
|
2017-09-16 01:04:13 +02:00
|
|
|
region: us-west-1
|
2017-09-07 07:47:56 +02:00
|
|
|
access_key_id: AKIAJVBODR3IA4O72THQ
|
2017-01-01 02:42:40 +01:00
|
|
|
secret_access_key:
|
2017-09-07 07:47:56 +02:00
|
|
|
secure: "kUGd3t7JcVWFESgIlzvsM8viZgCA9Encs3creW0xLJaLSeI1iVjlJK4h/2/nO6y224AFrh/GUfsNr4/4AlxPuYb8OU5oC5Lv+Ff2JiRDYtuNpyQSKAQp+bRYytWMtrmhja91h118Mbm90cUfcLPwkdiINgJNTXhPKg5Cqu3VYn0="
|
2017-01-01 02:42:40 +01:00
|
|
|
on:
|
|
|
|
branch: auto
|
|
|
|
condition: $DEPLOY = 1
|
2017-02-12 02:28:29 +01:00
|
|
|
|
2017-06-04 03:06:22 +02:00
|
|
|
- provider: s3
|
2017-09-16 01:04:13 +02:00
|
|
|
bucket: rust-lang-ci2
|
2017-06-04 03:06:22 +02:00
|
|
|
skip_cleanup: true
|
|
|
|
local_dir: deploy
|
|
|
|
upload_dir: rustc-builds-try
|
|
|
|
acl: public_read
|
2017-09-16 01:04:13 +02:00
|
|
|
region: us-west-1
|
2017-09-07 07:47:56 +02:00
|
|
|
access_key_id: AKIAJVBODR3IA4O72THQ
|
2017-06-04 03:06:22 +02:00
|
|
|
secret_access_key:
|
2017-09-07 07:47:56 +02:00
|
|
|
secure: "kUGd3t7JcVWFESgIlzvsM8viZgCA9Encs3creW0xLJaLSeI1iVjlJK4h/2/nO6y224AFrh/GUfsNr4/4AlxPuYb8OU5oC5Lv+Ff2JiRDYtuNpyQSKAQp+bRYytWMtrmhja91h118Mbm90cUfcLPwkdiINgJNTXhPKg5Cqu3VYn0="
|
2017-06-04 03:06:22 +02:00
|
|
|
on:
|
|
|
|
branch: try
|
2017-09-16 13:28:08 +02:00
|
|
|
condition: $DEPLOY = 1
|
2017-06-04 03:06:22 +02:00
|
|
|
|
2017-02-12 02:28:29 +01:00
|
|
|
# this is the same as the above deployment provider except that it uploads to
|
|
|
|
# a slightly different directory and has a different trigger
|
|
|
|
- provider: s3
|
2017-09-16 01:04:13 +02:00
|
|
|
bucket: rust-lang-ci2
|
2017-02-12 02:28:29 +01:00
|
|
|
skip_cleanup: true
|
|
|
|
local_dir: deploy
|
|
|
|
upload_dir: rustc-builds-alt
|
|
|
|
acl: public_read
|
2017-09-16 01:04:13 +02:00
|
|
|
region: us-west-1
|
2017-09-07 07:47:56 +02:00
|
|
|
access_key_id: AKIAJVBODR3IA4O72THQ
|
2017-02-12 02:28:29 +01:00
|
|
|
secret_access_key:
|
2017-09-07 07:47:56 +02:00
|
|
|
secure: "kUGd3t7JcVWFESgIlzvsM8viZgCA9Encs3creW0xLJaLSeI1iVjlJK4h/2/nO6y224AFrh/GUfsNr4/4AlxPuYb8OU5oC5Lv+Ff2JiRDYtuNpyQSKAQp+bRYytWMtrmhja91h118Mbm90cUfcLPwkdiINgJNTXhPKg5Cqu3VYn0="
|
2017-02-12 02:28:29 +01:00
|
|
|
on:
|
|
|
|
branch: auto
|
|
|
|
condition: $DEPLOY_ALT = 1
|