summary refs log tree commit diff
path: root/src/ci/docker
AgeCommit message (Collapse)AuthorLines
2017-07-13Split old and experimental wasm buildersThomas Lively-29/+71
2017-07-12Updated docker images to factor out common scriptsTy Coghlan-711/+366
2017-07-06Privileged in docker run isn't necessaryAidan Hobson Sayers-1/+0
2017-06-24Restore old emscripten.sh for use by asmjsThomas Lively-23/+76
2017-06-23Add Target (de)serialization for environment varsThomas Lively-1/+1
Also turn WebAssembly backend back on in its builder.
2017-06-22Add wasm32-experimental-emscripten to wasm builderThomas Lively-18/+28
This modifies the builder to download and use the LLVM tools from the last known good build on the WebAssembly buildbot waterfall, since these tools are built with the WebAssembly LLVM backend enabled.
2017-06-22Make wasm32 buildbot test LLVM backendThomas Lively-4/+7
This adds the experimental targets option to configure so it can be used by the builders and changes the wasm32 Dockerfile accordingly. Instead of using LLVM from the emsdk, the builder's emscripten tools now uses the Rust in-tree LLVM, since this is the one built with wasm support.
2017-06-16Auto merge of #42631 - malbarbo:wasm32, r=alexcrichtonbors-94/+159
Add a travis builder for wasm32-unknown-emscripten This commits add an entry to travis matrix that will execute wasm32-unknown-emscripten tests suites. - Emscripten for asmjs was updated to sdk-1.37.13-64bit - The tests are run with node 8.0.0 (it can execute wasm) - A wrapper script is used to run each test from the directory where it is (workaround for https://github.com/kripken/emscripten/issues/4542) - Some tests are ignore, see #42629 and #42630
2017-06-13Disable wasm32 imageMarco A L Barbosa-0/+0
2017-06-13Make tidy happyMarco A L Barbosa-1/+1
2017-06-13Add missing emscripten.sh fileMarco A L Barbosa-0/+53
2017-06-13Add docker image for wasm32-unknown-emscriptenMarco A L Barbosa-94/+106
- rename emscripten docker image to asmjs - create wasm32 docker image
2017-06-06Enable profiler selectively on some buildersMarco Castelluccio-3/+5
2017-06-02Quiet tests on PR testsMark Simulacrum-0/+1
2017-06-02ci: Improve log output (mainly Travis).kennytm-0/+7
* Bring back colors on Travis, which was disabled since #39036. Append --color=always to cargo when running in CI environment. * Removed `set -x` in the shell scripts. The `retry` function already prints which command it is running, add `-x` just add noise to the output. * Support travis_fold/travis_time. Matching pairs of these allow Travis CI to collapse the output in between. This greatly cut down the unnecessary "successful" output one need to scroll through before finding the failed statement.
2017-05-28Auto merge of #42218 - venkatagiri:update_cross, r=alexchrichtonbors-24/+62
use shared scripts for init and sccache in cross image cc #42201 cc @malbarbo
2017-05-26ci: move musl install into their own scriptsVenkata Giri Reddy-16/+52
2017-05-25Update OpenSSL download locationAlex Crichton-4/+6
In rustbuild itself we download from our mirror but in the containers we don't do this yet. The OpenSSL download url changes from time to time (it breaks when they release a new version) so let's download from our mirror instead.
2017-05-25use shared scripts for init and sccache in cross imageVenkata Giri Reddy-8/+10
2017-05-18ci: fix dist-powerpc-linux imageMarco A L Barbosa-2/+2
2017-05-18ci: add filesystem layout docsMarco A L Barbosa-0/+6
2017-05-18ci: move shared scripts to src/ci/docker/scripts/Marco A L Barbosa-20/+20
2017-05-17ci: allows shared scriptsMarco A L Barbosa-260/+237
2017-05-12Update sccache binaries to mozilla/sccache@d3627d766Alex Crichton-39/+39
This commit updates the sccache binaries to fix a cache load failure seen on #41926, fixed by mozilla/sccache#119
2017-05-11Auto merge of #41864 - malbarbo:android-docker, r=alexcrichtonbors-5/+284
Add disabled android host builders Introduce the concept of disabled builder. A disabled builder is one that is not run by travis. It is intended to be run by the user who wants a rustc for a tier 2 or 3 platform. Off corse, there is no guarantee that it will work.
2017-05-09Add disabled android host buildersMarco A L Barbosa-5/+284
2017-05-09ci: Update android ndk and sdkMarco A L Barbosa-118/+138
2017-04-29ci: Update sccache buildAlex Crichton-34/+34
Pulls in mozilla/sccache@ef0d77543 to fix #40240 again after the builds included in #41447 forgot to include the mio fixed included in #41076. Closes #40240
2017-04-27appveyor: Use Ninja/sccache on MSVCAlex Crichton-34/+34
Now that the final bug fixes have been merged into sccache we can start leveraging sccache on the MSVC builders on AppVeyor instead of relying on the ad-hoc caching strategy of trigger files and whatnot.
2017-04-27travis: Update sccache build usedAlex Crichton-34/+34
This build is no longer a forked version with temporary bugfixes, everything should be upstreamed!
2017-04-24Auto merge of #40123 - TimNN:llvm40, r=alexcrichtonbors-5/+5
LLVM 4.0 Upgrade Since nobody has done this yet, I decided to get things started: **Todo:** * [x] push the relevant commits to `rust-lang/llvm` and `rust-lang/compiler-rt` * [x] cleanup `.gitmodules` * [x] Verify if there are any other commits from `rust-lang/llvm` which need backporting * [x] Investigate / fix debuginfo ("`<optimized out>`") failures * [x] Use correct emscripten version in docker image --- Closes #37609. --- **Test results:** Everything is green 🎉
2017-04-23FIN: update emscripten builderTim Neumann-5/+5
2017-04-20Add x86_64-linux-android targetMarco A L Barbosa-3/+11
2017-04-12travis: Enable rust-analysis package for more targetsAlex Crichton-3/+7
This commit enables the `rust-analysis` package to be produced for all targets that are part of the `dist-*` suite of docker images on Travis. Currently these packages are showing up with `available = false` in the `channel-rust-nightly.toml` manifest where we'd prefer to have them show up for all targets. Unfortunately rustup isn't handling the `available = false` section well right now, so this should also inadvertently fix the nightly regression.
2017-04-11Rollup merge of #41231 - TimNN:fix-centos, r=frewsxcvCorey Farwell-2/+2
Use correct vault URL in CentOS images r? @frewsxcv
2017-04-11use correct vault urlTim Neumann-2/+2
2017-04-11Make sccache a bit quieterAidan Hobson Sayers-1/+0
2017-04-07Auto merge of #41138 - frewsxcv:rollup, r=frewsxcvbors-22/+69
Rollup of 9 pull requests - Successful merges: #40797, #41047, #41056, #41061, #41075, #41080, #41120, #41130, #41131 - Failed merges:
2017-04-07Rollup merge of #41130 - petrhosek:fuchsia-ci-upstream, r=alexcrichtonCorey Farwell-12/+64
travis: Use upstream LLVM repositories for Fuchsia The Fuchsia copies of LLVM repositories contain additional patches for work-in-progress features and there is some amount of churn that may break Rust. Use upstream LLVM repositories instead for building the toolchain used by the Fuchsia builder.
2017-04-07Rollup merge of #41080 - cuviper:generic-powerpc, r=alexcrichtonCorey Farwell-10/+5
dist-powerpc-linux: use a pure 32-bit CPU profile With `-mcpu=power4`, code might use instructions like `fcfid`, excluding older CPUs like the PowerPC G4, which apparently some users would like to use. The generic `-mcpu=powerpc` should stick to pure 32-bit PowerPC instructions. Fixes rust-lang/cargo#3852.
2017-04-07Auto merge of #40971 - malbarbo:android-emulator-64, r=alexcrichtonbors-4/+6
Use 64 bits emulator to run android tests Also install headless jre instead of the full jre.
2017-04-06travis: Use upstream LLVM repositories for FuchsiaPetr Hosek-12/+64
The Fuchsia copies of LLVM repositories contain additional patches for work-in-progress features and there is some amount of churn that may break Rust. Use upstream LLVM repositories instead for building the toolchain used by the Fuchsia builder.
2017-04-06Rollup merge of #41089 - alexcrichton:update-musl, r=brsonCorey Farwell-4/+7
travis: Update musl for i686/x86_64 This is a random stab towards #38618, no idea if it'll work. But hey more up-to-date software is better, right?
2017-04-05travis: Update musl for i686/x86_64Alex Crichton-4/+7
This is a random stab towards #38618, no idea if it'll work. But hey more up-to-date software is better, right?
2017-04-05dist-powerpc-linux: use a pure 32-bit CPU profileJosh Stone-10/+5
With `-mcpu=power4`, code might use instructions like `fcfid`, excluding older CPUs like the PowerPC G4, which apparently some users would like to use. The generic `-mcpu=powerpc` should stick to pure 32-bit PowerPC instructions. Fixes rust-lang/cargo#3852.
2017-04-04travis: Update sccache binariesAlex Crichton-34/+34
I've tracked down what I believe is the last spurious sccache failure on #40240 to behavior in mio (carllerche/mio#583), and this commit updates the binaries to a version which has that fix incorporated.
2017-04-04fix rollupTim Neumann-0/+6
2017-04-04Merge remote-tracking branch 'hub/centos5-vault' into rollupTim Neumann-0/+6
2017-04-03use fixed ip for vault.centos.org until updates have propagated to all mirrorsTim Neumann-1/+1
2017-04-03switch to vault.centos.orgTim Neumann-0/+6