diff options
author | Simon Sapin <simon.sapin@exyr.org> | 2018-01-09 15:55:10 +0100 |
---|---|---|
committer | Simon Sapin <simon.sapin@exyr.org> | 2018-01-10 20:54:35 +0100 |
commit | cee2aadd828efa717d08a15eb2cb35fe0b7e6943 (patch) | |
tree | 9e2a29ff7fd4f817bbd81b7bc65f01c76702a1cd | |
parent | c8f542afacce91a71e7805f7b610d5ec66195b8d (diff) | |
download | servo-cee2aadd828efa717d08a15eb2cb35fe0b7e6943.tar.gz servo-cee2aadd828efa717d08a15eb2cb35fe0b7e6943.zip |
Disable incremental compilation on CI
We don’t keep the `target` directory between builds,
and incremental cache takes a lot of space.
-rw-r--r-- | .travis.yml | 1 | ||||
-rw-r--r-- | appveyor.yml | 1 | ||||
-rw-r--r-- | etc/ci/buildbot_steps.yml | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 0ada8a1408a..8b128eeedac 100644 --- a/.travis.yml +++ b/.travis.yml @@ -40,6 +40,7 @@ matrix: env: CCACHE=/usr/bin/ccache RUSTFLAGS=-Dwarnings + CARGO_INCREMENTAL=0 addons: apt: sources: diff --git a/appveyor.yml b/appveyor.yml index 184e347a16e..a5e70156ba8 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -2,6 +2,7 @@ version: 1.0.{build} environment: CCACHE_DIR: "%APPVEYOR_BUILD_FOLDER%\\.ccache" + CARGO_INCREMENTAL: 0 RUST_BACKTRACE: 1 RUSTFLAGS: -Dwarnings # The appveyor image we use has a pretty huge set of things installed... we make the diff --git a/etc/ci/buildbot_steps.yml b/etc/ci/buildbot_steps.yml index 62ba5177841..a37593de292 100644 --- a/etc/ci/buildbot_steps.yml +++ b/etc/ci/buildbot_steps.yml @@ -1,5 +1,6 @@ env: RUSTFLAGS: -Dwarnings + CARGO_INCREMENTAL: "0" mac-rel-wpt1: - ./mach clean-nightlies --keep 3 --force |