diff options
| author | bors <bors@rust-lang.org> | 2018-03-19 00:02:32 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2018-03-19 00:02:32 +0000 |
| commit | c2f4744d2db4e162df824d0bd0b093ba4b351545 (patch) | |
| tree | d0cf9bfe82d1dcf1c1cd803493918d2f34e7359e /src/ci/docker | |
| parent | 5508b27145cfb82896ae838e6aca0cd48750796f (diff) | |
| parent | 60eb308b421a471fa3ecc2848fb93c6527ec409c (diff) | |
| download | rust-c2f4744d2db4e162df824d0bd0b093ba4b351545.tar.gz rust-c2f4744d2db4e162df824d0bd0b093ba4b351545.zip | |
Auto merge of #49095 - alexcrichton:debug-asmjs, r=kennytm
Try to reduce amount of time on the asmjs builder This PR has two commits for two separate strategies: * First it disables optimizations for all tests, hopefully saving time by not optimizing the test code. This caused a number of run-pass tests to fail which are switched to being ignored here. * Next it disables a number of test suites which aren't asm.js specific and already run elsewhere cc #48826
Diffstat (limited to 'src/ci/docker')
| -rw-r--r-- | src/ci/docker/asmjs/Dockerfile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/ci/docker/asmjs/Dockerfile b/src/ci/docker/asmjs/Dockerfile index 2a0901691a5..cb85cf3d9e9 100644 --- a/src/ci/docker/asmjs/Dockerfile +++ b/src/ci/docker/asmjs/Dockerfile @@ -29,6 +29,11 @@ ENV EM_CONFIG=/emsdk-portable/.emscripten ENV TARGETS=asmjs-unknown-emscripten -ENV RUST_CONFIGURE_ARGS --enable-emscripten +ENV RUST_CONFIGURE_ARGS --enable-emscripten --disable-optimize-tests -ENV SCRIPT python2.7 ../x.py test --target $TARGETS +ENV SCRIPT python2.7 ../x.py test --target $TARGETS \ + src/test/run-pass \ + src/test/run-fail \ + src/libstd \ + src/liballoc \ + src/libcore |
