2016-11-16 20:31:19 +00:00
|
|
|
language: minimal
|
2015-09-18 17:19:23 +00:00
|
|
|
sudo: required
|
2016-10-11 19:21:40 +00:00
|
|
|
dist: trusty
|
2016-06-01 15:14:22 +00:00
|
|
|
services:
|
|
|
|
- docker
|
2014-02-20 23:37:44 +00:00
|
|
|
|
2015-09-18 17:19:23 +00:00
|
|
|
git:
|
2016-07-28 09:48:43 +00:00
|
|
|
depth: 1
|
2016-10-11 19:21:40 +00:00
|
|
|
submodules: false
|
2015-07-14 00:29:01 +00:00
|
|
|
|
2016-10-11 19:21:40 +00:00
|
|
|
matrix:
|
2017-01-20 01:18:12 +00:00
|
|
|
fast_finish: true
|
2016-10-11 19:21:40 +00:00
|
|
|
include:
|
|
|
|
# Linux builders, all docker images
|
2017-02-27 22:53:12 +00:00
|
|
|
- env: IMAGE=arm-android
|
2017-01-28 21:38:06 +00:00
|
|
|
- env: IMAGE=armhf-gnu
|
2017-01-01 01:42:40 +00:00
|
|
|
- env: IMAGE=cross DEPLOY=1
|
2017-04-01 14:18:43 +00:00
|
|
|
- env: IMAGE=dist-aarch64-linux DEPLOY=1
|
2017-02-27 22:53:12 +00:00
|
|
|
- env: IMAGE=dist-android DEPLOY=1
|
2017-01-13 17:18:09 +00:00
|
|
|
- env: IMAGE=dist-arm-linux DEPLOY=1
|
2017-04-01 14:18:43 +00:00
|
|
|
- env: IMAGE=dist-armhf-linux DEPLOY=1
|
|
|
|
- env: IMAGE=dist-armv7-linux DEPLOY=1
|
2017-02-17 04:54:24 +00:00
|
|
|
- env: IMAGE=dist-fuchsia DEPLOY=1
|
2017-04-01 14:18:43 +00:00
|
|
|
- env: IMAGE=dist-i586-gnu-i686-musl DEPLOY=1
|
|
|
|
- env: IMAGE=dist-i686-freebsd DEPLOY=1
|
|
|
|
- env: IMAGE=dist-i686-linux DEPLOY=1
|
2017-01-13 17:18:09 +00:00
|
|
|
- env: IMAGE=dist-mips-linux DEPLOY=1
|
|
|
|
- env: IMAGE=dist-mips64-linux DEPLOY=1
|
2017-04-01 14:18:43 +00:00
|
|
|
- env: IMAGE=dist-mips64el-linux DEPLOY=1
|
|
|
|
- env: IMAGE=dist-mipsel-linux DEPLOY=1
|
2017-01-13 17:18:09 +00:00
|
|
|
- env: IMAGE=dist-powerpc-linux DEPLOY=1
|
|
|
|
- env: IMAGE=dist-powerpc64-linux DEPLOY=1
|
2017-04-01 14:18:43 +00:00
|
|
|
- env: IMAGE=dist-powerpc64le-linux DEPLOY=1
|
|
|
|
- env: IMAGE=dist-s390x-linux DEPLOY=1
|
|
|
|
- env: IMAGE=dist-x86_64-freebsd DEPLOY=1
|
|
|
|
- env: IMAGE=dist-x86_64-linux DEPLOY=1
|
2017-03-09 03:46:44 +00:00
|
|
|
- env: IMAGE=dist-x86_64-musl DEPLOY=1
|
2017-04-01 14:18:43 +00:00
|
|
|
- env: IMAGE=dist-x86_64-netbsd DEPLOY=1
|
2017-01-20 01:18:12 +00:00
|
|
|
- env: IMAGE=emscripten
|
2017-01-19 00:04:22 +00:00
|
|
|
- env: IMAGE=i686-gnu
|
2016-10-11 19:21:40 +00:00
|
|
|
- env: IMAGE=i686-gnu-nopt
|
2017-01-19 00:04:22 +00:00
|
|
|
- env: IMAGE=x86_64-gnu
|
rustbuild: Compile rustc twice, not thrice
This commit switches the rustbuild build system to compiling the
compiler twice for a normal bootstrap rather than the historical three
times.
Rust is a bootstrapped language which means that a previous version of
the compiler is used to build the next version of the compiler. Over
time, however, we change many parts of compiler artifacts such as the
metadata format, symbol names, etc. These changes make artifacts from
one compiler incompatible from another compiler. Consequently if a
compiler wants to be able to use some artifacts then it itself must have
compiled the artifacts.
Historically the rustc build system has achieved this by compiling the
compiler three times:
* An older compiler (stage0) is downloaded to kick off the chain.
* This compiler now compiles a new compiler (stage1)
* The stage1 compiler then compiles another compiler (stage2)
* Finally, the stage2 compiler needs libraries to link against, so it
compiles all the libraries again.
This entire process amounts in compiling the compiler three times.
Additionally, this process always guarantees that the Rust source tree
can compile itself because the stage2 compiler (created by a freshly
created compiler) would successfully compile itself again. This
property, ensuring Rust can compile itself, is quite important!
In general, though, this third compilation is not required for general
purpose development on the compiler. The third compiler (stage2) can
reuse the libraries that were created during the second compile. In
other words, the second compilation can produce both a compiler and the
libraries that compiler will use. These artifacts *must* be compatible
due to the way plugins work today anyway, and they were created by the
same source code so they *should* be compatible as well.
So given all that, this commit switches the default build process to
only compile the compiler three times, avoiding this third compilation
by copying artifacts from the previous one. Along the way a new entry in
the Travis matrix was also added to ensure that our full bootstrap can
succeed. This entry does not run tests, though, as it should not be
necessary.
To restore the old behavior of a full bootstrap (three compiles) you can
either pass:
./configure --enable-full-bootstrap
or if you're using config.toml:
[build]
full-bootstrap = true
Overall this will hopefully be an easy 33% win in build times of the
compiler. If we do 33% less work we should be 33% faster! This in turn
should affect cycle times and such on Travis and AppVeyor positively as
well as making it easier to work on the compiler itself.
2016-12-25 23:20:33 +00:00
|
|
|
- env: IMAGE=x86_64-gnu-full-bootstrap
|
2016-12-29 17:55:16 +00:00
|
|
|
- env: IMAGE=x86_64-gnu-aux
|
2016-10-11 19:21:40 +00:00
|
|
|
- env: IMAGE=x86_64-gnu-debug
|
|
|
|
- env: IMAGE=x86_64-gnu-nopt
|
2016-11-10 14:12:53 +00:00
|
|
|
- env: IMAGE=x86_64-gnu-llvm-3.7 ALLOW_PR=1 RUST_BACKTRACE=1
|
2016-12-30 17:26:25 +00:00
|
|
|
- env: IMAGE=x86_64-gnu-distcheck
|
2017-01-05 14:02:14 +00:00
|
|
|
- env: IMAGE=x86_64-gnu-incremental
|
2016-10-11 19:21:40 +00:00
|
|
|
|
2017-03-31 18:04:25 +00: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 19:21:40 +00:00
|
|
|
- env: >
|
|
|
|
RUST_CHECK_TARGET=check
|
2016-12-17 00:32:40 +00:00
|
|
|
RUST_CONFIGURE_ARGS=--build=x86_64-apple-darwin
|
2016-10-11 19:21:40 +00:00
|
|
|
SRC=.
|
2017-03-10 17:04:27 +00:00
|
|
|
RUSTC_RETRY_LINKER_ON_SEGFAULT=1
|
2017-03-11 17:06:44 +00:00
|
|
|
SCCACHE_ERROR_LOG=/tmp/sccache.log
|
2017-03-13 18:36:44 +00:00
|
|
|
MACOSX_DEPLOYMENT_TARGET=10.8
|
|
|
|
MACOSX_STD_DEPLOYMENT_TARGET=10.7
|
2016-10-11 19:21:40 +00:00
|
|
|
os: osx
|
2017-01-17 02:43:38 +00:00
|
|
|
osx_image: xcode8.2
|
2016-12-12 19:36:52 +00:00
|
|
|
install: &osx_install_sccache >
|
2017-04-04 22:55:23 +00:00
|
|
|
travis_retry curl -o /usr/local/bin/sccache https://s3.amazonaws.com/rust-lang-ci/rust-ci-mirror/2017-04-04-sccache-x86_64-apple-darwin &&
|
2017-03-17 16:31:28 +00:00
|
|
|
chmod +x /usr/local/bin/sccache &&
|
|
|
|
travis_retry curl -o /usr/local/bin/stamp https://s3.amazonaws.com/rust-lang-ci/rust-ci-mirror/2017-03-17-stamp-x86_64-apple-darwin &&
|
|
|
|
chmod +x /usr/local/bin/stamp
|
2017-02-10 20:59:40 +00:00
|
|
|
- env: >
|
|
|
|
RUST_CHECK_TARGET=check
|
|
|
|
RUST_CONFIGURE_ARGS=--build=i686-apple-darwin
|
|
|
|
SRC=.
|
2017-03-10 17:04:27 +00:00
|
|
|
RUSTC_RETRY_LINKER_ON_SEGFAULT=1
|
2017-03-11 17:06:44 +00:00
|
|
|
SCCACHE_ERROR_LOG=/tmp/sccache.log
|
2017-03-13 18:36:44 +00:00
|
|
|
MACOSX_DEPLOYMENT_TARGET=10.8
|
|
|
|
MACOSX_STD_DEPLOYMENT_TARGET=10.7
|
2017-02-10 20:59:40 +00:00
|
|
|
os: osx
|
|
|
|
osx_image: xcode8.2
|
|
|
|
install: *osx_install_sccache
|
2017-01-12 22:58:55 +00:00
|
|
|
|
2017-03-31 18:04:25 +00: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 19:21:40 +00:00
|
|
|
- env: >
|
2017-02-10 20:59:40 +00:00
|
|
|
RUST_CHECK_TARGET=dist
|
2017-01-21 01:03:06 +00:00
|
|
|
RUST_CONFIGURE_ARGS="--build=i686-apple-darwin --enable-extended"
|
2016-10-11 19:21:40 +00:00
|
|
|
SRC=.
|
2017-01-01 01:42:40 +00:00
|
|
|
DEPLOY=1
|
2017-03-10 17:04:27 +00:00
|
|
|
RUSTC_RETRY_LINKER_ON_SEGFAULT=1
|
2017-03-11 17:06:44 +00:00
|
|
|
SCCACHE_ERROR_LOG=/tmp/sccache.log
|
2017-03-31 18:04:25 +00:00
|
|
|
MACOSX_DEPLOYMENT_TARGET=10.7
|
2016-10-11 19:21:40 +00:00
|
|
|
os: osx
|
2017-03-31 18:04:25 +00:00
|
|
|
osx_image: xcode7
|
2017-03-17 16:33:34 +00:00
|
|
|
install: *osx_install_sccache
|
2016-10-11 19:21:40 +00:00
|
|
|
- env: >
|
2017-01-01 01:42:40 +00:00
|
|
|
RUST_CHECK_TARGET=dist
|
2017-01-21 01:03:06 +00:00
|
|
|
RUST_CONFIGURE_ARGS="--target=aarch64-apple-ios,armv7-apple-ios,armv7s-apple-ios,i386-apple-ios,x86_64-apple-ios --enable-extended"
|
2016-10-11 19:21:40 +00:00
|
|
|
SRC=.
|
2017-01-01 01:42:40 +00:00
|
|
|
DEPLOY=1
|
2017-03-10 17:04:27 +00:00
|
|
|
RUSTC_RETRY_LINKER_ON_SEGFAULT=1
|
2017-03-11 17:06:44 +00:00
|
|
|
SCCACHE_ERROR_LOG=/tmp/sccache.log
|
2017-03-31 18:04:25 +00:00
|
|
|
MACOSX_DEPLOYMENT_TARGET=10.7
|
2016-10-11 19:21:40 +00:00
|
|
|
os: osx
|
2017-03-31 18:04:25 +00:00
|
|
|
osx_image: xcode7
|
2016-12-12 19:36:52 +00:00
|
|
|
install: *osx_install_sccache
|
|
|
|
|
2017-02-12 01:28:29 +00: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.
|
2017-04-04 16:14:14 +00:00
|
|
|
- env: IMAGE=dist-x86_64-linux DEPLOY_ALT=1
|
2017-02-12 01:28:29 +00:00
|
|
|
- env: >
|
|
|
|
RUST_CHECK_TARGET=dist
|
|
|
|
RUST_CONFIGURE_ARGS="--enable-extended"
|
|
|
|
SRC=.
|
|
|
|
DEPLOY_ALT=1
|
2017-03-10 17:04:27 +00:00
|
|
|
RUSTC_RETRY_LINKER_ON_SEGFAULT=1
|
2017-03-11 17:06:44 +00:00
|
|
|
SCCACHE_ERROR_LOG=/tmp/sccache.log
|
2017-03-31 18:04:25 +00:00
|
|
|
MACOSX_DEPLOYMENT_TARGET=10.7
|
2017-02-12 01:28:29 +00:00
|
|
|
os: osx
|
2017-03-31 18:04:25 +00:00
|
|
|
osx_image: xcode7
|
2017-02-12 01:28:29 +00:00
|
|
|
install: *osx_install_sccache
|
|
|
|
|
2016-12-12 19:36:52 +00:00
|
|
|
env:
|
|
|
|
global:
|
|
|
|
- SCCACHE_BUCKET=rust-lang-ci-sccache
|
|
|
|
- AWS_ACCESS_KEY_ID=AKIAIMX7VLAS3PZAVLUQ
|
|
|
|
# AWS_SECRET_ACCESS_KEY=...
|
|
|
|
- secure: "Pixhh0hXDqGCdOyLtGFjli3J2AtDWIpyb2btIrLe956nCBDRutRoMm6rv5DI9sFZN07Mms7VzNNvhc9wCW1y63JAm414d2Co7Ob8kWMZlz9l9t7ACHuktUiis8yr+S4Quq1Vqd6pqi7pf2J++UxC8R/uLeqVrubzr6+X7AbmEFE="
|
2015-10-19 01:37:14 +00:00
|
|
|
|
2017-03-17 16:31:28 +00:00
|
|
|
# Note that this is overridden on OSX builders
|
|
|
|
install: >
|
2017-03-17 16:33:34 +00:00
|
|
|
travis_retry curl -o $HOME/stamp https://s3.amazonaws.com/rust-lang-ci/rust-ci-mirror/2017-03-17-stamp-x86_64-unknown-linux-musl &&
|
|
|
|
chmod +x $HOME/stamp &&
|
|
|
|
export PATH=$PATH:$HOME
|
2017-03-17 16:31:28 +00:00
|
|
|
|
2017-03-08 20:19:33 +00:00
|
|
|
before_script:
|
|
|
|
- >
|
|
|
|
echo "#### Disk usage before running script:";
|
|
|
|
df -h;
|
|
|
|
du . | sort -nr | head -n100
|
|
|
|
|
2015-09-18 17:19:23 +00:00
|
|
|
script:
|
2016-11-16 20:31:19 +00:00
|
|
|
- >
|
|
|
|
if [ "$ALLOW_PR" = "" ] && [ "$TRAVIS_BRANCH" != "auto" ]; then
|
2017-03-23 23:33:15 +00:00
|
|
|
echo skipping, not a full build
|
2016-11-16 20:31:19 +00:00
|
|
|
else
|
2017-03-23 23:33:15 +00:00
|
|
|
stamp src/ci/init_repo.sh . "$HOME/rustsrc" &&
|
|
|
|
if [ "$TRAVIS_OS_NAME" = "osx" ]; then
|
|
|
|
stamp src/ci/run.sh;
|
|
|
|
else
|
|
|
|
stamp src/ci/docker/run.sh $IMAGE;
|
|
|
|
fi
|
2016-11-16 20:31:19 +00:00
|
|
|
fi
|
2014-03-06 05:17:15 +00:00
|
|
|
|
2017-03-08 20:19:33 +00: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 19:00:50 +00: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 17:08:03 +00:00
|
|
|
- cat obj/tmp/sccache.log
|
2017-03-11 17:06:44 +00:00
|
|
|
- cat /tmp/sccache.log
|
2017-03-08 20:19:33 +00:00
|
|
|
|
2017-03-23 19:00:50 +00: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 19:33:24 +00: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 19:21:40 +00:00
|
|
|
# Save tagged docker images we created and load them if they're available
|
2017-03-23 23:33:15 +00:00
|
|
|
# Travis saves caches whether the build failed or not, nuke rustsrc if
|
|
|
|
# the failure was while updating it (as it may be in an bad state)
|
|
|
|
# https://github.com/travis-ci/travis-ci/issues/4472
|
2016-10-11 19:21:40 +00:00
|
|
|
before_cache:
|
|
|
|
- docker history -q rust-ci |
|
|
|
|
grep -v missing |
|
|
|
|
xargs docker save |
|
2016-12-26 05:56:07 +00:00
|
|
|
gzip > $HOME/docker/rust-ci.tar.gz
|
2017-03-23 23:33:15 +00:00
|
|
|
- if [ ! -f $HOME/rustsrc/cache_valid1 ]; then
|
|
|
|
echo "WARNING rustsrc cache was invalid when saving";
|
|
|
|
rm -rf $HOME/rustsrc && mkdir $HOME/rustsrc;
|
|
|
|
fi
|
2016-10-11 19:21:40 +00:00
|
|
|
before_install:
|
|
|
|
- zcat $HOME/docker/rust-ci.tar.gz | docker load || true
|
2017-03-23 23:33:15 +00:00
|
|
|
- mkdir -p $HOME/rustsrc
|
2015-06-11 09:26:19 +00:00
|
|
|
|
2014-03-06 05:17:15 +00:00
|
|
|
notifications:
|
|
|
|
email: false
|
|
|
|
|
2016-10-11 19:21:40 +00:00
|
|
|
cache:
|
|
|
|
directories:
|
|
|
|
- $HOME/docker
|
2017-03-23 23:33:15 +00:00
|
|
|
- $HOME/rustsrc
|
2017-01-01 01:42:40 +00:00
|
|
|
|
|
|
|
before_deploy:
|
|
|
|
- mkdir -p deploy/$TRAVIS_COMMIT
|
|
|
|
- >
|
|
|
|
if [ "$TRAVIS_OS_NAME" == "osx" ]; then
|
2017-01-30 23:21:32 +00:00
|
|
|
rm -rf build/dist/doc &&
|
2017-01-28 18:24:42 +00:00
|
|
|
cp -r build/dist/* deploy/$TRAVIS_COMMIT;
|
2017-01-01 01:42:40 +00:00
|
|
|
else
|
2017-01-30 23:21:32 +00:00
|
|
|
rm -rf obj/build/dist/doc &&
|
2017-01-28 18:24:42 +00:00
|
|
|
cp -r obj/build/dist/* deploy/$TRAVIS_COMMIT;
|
2017-01-01 01:42:40 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
deploy:
|
|
|
|
- provider: s3
|
|
|
|
bucket: rust-lang-ci
|
|
|
|
skip_cleanup: true
|
|
|
|
local_dir: deploy
|
|
|
|
upload_dir: rustc-builds
|
|
|
|
acl: public_read
|
|
|
|
region: us-east-1
|
|
|
|
access_key_id: AKIAIPQVNYF2T3DTYIWQ
|
|
|
|
secret_access_key:
|
|
|
|
secure: "FBqDqOTeIPMu6v/WYPf4CFSlh9rLRZGKVtpLa5KkyuOhXRTrnEzBduEtS8/FMIxdQImvurhSvxWvqRybMOi4qoVfjMqqpHAI7uBbidbrvAcJoHNsx6BgUNVCIoH6a0UsAjTUtm6/YPIpzbHoLZXPL0GrHPMk6Mu04qVSmcYNWn4="
|
|
|
|
on:
|
|
|
|
branch: auto
|
|
|
|
condition: $DEPLOY = 1
|
2017-02-12 01:28:29 +00: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
|
|
|
|
bucket: rust-lang-ci
|
|
|
|
skip_cleanup: true
|
|
|
|
local_dir: deploy
|
|
|
|
upload_dir: rustc-builds-alt
|
|
|
|
acl: public_read
|
|
|
|
region: us-east-1
|
|
|
|
access_key_id: AKIAIPQVNYF2T3DTYIWQ
|
|
|
|
secret_access_key:
|
|
|
|
secure: "FBqDqOTeIPMu6v/WYPf4CFSlh9rLRZGKVtpLa5KkyuOhXRTrnEzBduEtS8/FMIxdQImvurhSvxWvqRybMOi4qoVfjMqqpHAI7uBbidbrvAcJoHNsx6BgUNVCIoH6a0UsAjTUtm6/YPIpzbHoLZXPL0GrHPMk6Mu04qVSmcYNWn4="
|
|
|
|
on:
|
|
|
|
branch: auto
|
|
|
|
condition: $DEPLOY_ALT = 1
|