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-12-21 03:34:57 +00:00
|
|
|
osx_image: xcode8.2
|
|
|
|
|
2016-10-11 19:21:40 +00:00
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
# Linux builders, all docker images
|
|
|
|
- env: IMAGE=arm-android
|
|
|
|
- env: IMAGE=cross
|
|
|
|
- env: IMAGE=i686-gnu
|
|
|
|
- env: IMAGE=i686-gnu-nopt
|
|
|
|
- env: IMAGE=x86_64-freebsd
|
|
|
|
- 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-16 20:31:19 +00:00
|
|
|
- env: IMAGE=x86_64-gnu-make
|
2016-11-10 14:12:53 +00:00
|
|
|
- env: IMAGE=x86_64-gnu-llvm-3.7 ALLOW_PR=1 RUST_BACKTRACE=1
|
2016-10-11 19:21:40 +00:00
|
|
|
- env: IMAGE=x86_64-musl
|
|
|
|
|
|
|
|
# OSX builders
|
|
|
|
- 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=.
|
|
|
|
os: osx
|
2016-12-12 19:36:52 +00:00
|
|
|
install: &osx_install_sccache >
|
|
|
|
curl -L https://api.pub.build.mozilla.org/tooltool/sha512/d0025b286468cc5ada83b23d3fafbc936b9f190eaa7d4a981715b18e8e3bf720a7bcee7bfe758cfdeb8268857f6098fd52dcdd8818232692a30ce91039936596 |
|
|
|
|
tar xJf - -C /usr/local/bin --strip-components=1
|
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=i686-apple-darwin
|
2016-10-11 19:21:40 +00:00
|
|
|
SRC=.
|
|
|
|
os: osx
|
2016-12-12 19:36:52 +00:00
|
|
|
install: *osx_install_sccache
|
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 --disable-rustbuild
|
2016-10-11 19:21:40 +00:00
|
|
|
SRC=.
|
|
|
|
os: osx
|
2016-12-12 19:36:52 +00:00
|
|
|
install: *osx_install_sccache
|
2016-10-11 19:21:40 +00:00
|
|
|
- env: >
|
|
|
|
RUST_CHECK_TARGET=
|
|
|
|
RUST_CONFIGURE_ARGS=--target=aarch64-apple-ios,armv7-apple-ios,armv7s-apple-ios,i386-apple-ios,x86_64-apple-ios
|
|
|
|
SRC=.
|
|
|
|
os: osx
|
2016-12-12 19:36:52 +00:00
|
|
|
install: *osx_install_sccache
|
|
|
|
|
|
|
|
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
|
|
|
|
2015-09-18 17:19:23 +00:00
|
|
|
script:
|
2016-11-16 20:31:19 +00:00
|
|
|
- >
|
|
|
|
if [ "$ALLOW_PR" = "" ] && [ "$TRAVIS_BRANCH" != "auto" ]; then
|
|
|
|
echo skipping, not a full build;
|
|
|
|
elif [ "$TRAVIS_OS_NAME" = "osx" ]; then
|
2016-12-28 17:29:14 +00:00
|
|
|
git submodule update --init &&
|
2016-11-16 20:31:19 +00:00
|
|
|
src/ci/run.sh;
|
|
|
|
else
|
2016-12-28 17:29:14 +00:00
|
|
|
git submodule update --init &&
|
2016-11-16 20:31:19 +00:00
|
|
|
src/ci/docker/run.sh $IMAGE;
|
|
|
|
fi
|
2014-03-06 05:17:15 +00:00
|
|
|
|
2016-10-11 19:21:40 +00:00
|
|
|
# Save tagged docker images we created and load them if they're available
|
|
|
|
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
|
2016-10-11 19:21:40 +00:00
|
|
|
before_install:
|
|
|
|
- zcat $HOME/docker/rust-ci.tar.gz | docker load || true
|
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
|