summaryrefslogtreecommitdiffstats
path: root/appveyor.yml
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2018-03-06 19:19:56 -0800
committerAlex Crichton <alex@alexcrichton.com>2018-03-07 07:29:44 -0800
commit7f465abd4f5c3269b1c7b2e99eeb1ff56fe846d5 (patch)
treeb149b1db55d901437a6a9519d6e20a7d9b79bf1f /appveyor.yml
parentAuto merge of #48768 - kennytm:rollup, r=kennytm (diff)
downloadgrust-7f465abd4f5c3269b1c7b2e99eeb1ff56fe846d5.tar.gz
grust-7f465abd4f5c3269b1c7b2e99eeb1ff56fe846d5.tar.bz2
grust-7f465abd4f5c3269b1c7b2e99eeb1ff56fe846d5.tar.xz
appveyor: Shard more slow MSVC builders
Take two more slow builders and split them in two to get them under 2 hrs
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml12
1 files changed, 9 insertions, 3 deletions
diff --git a/appveyor.yml b/appveyor.yml
index 0735ead892..fc1bb95b9b 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -19,12 +19,18 @@ environment:
19 RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-msvc --enable-profiler 19 RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-msvc --enable-profiler
20 SCRIPT: python x.py test 20 SCRIPT: python x.py test
21 - MSYS_BITS: 32 21 - MSYS_BITS: 32
22 RUST_CONFIGURE_ARGS: --build=i686-pc-windows-msvc --target=i686-pc-windows-msvc 22 RUST_CONFIGURE_ARGS: --build=i686-pc-windows-msvc
23 SCRIPT: python x.py test --host i686-pc-windows-msvc --target i686-pc-windows-msvc 23 SCRIPT: python x.py test --exclude src/test/run-pass --exclude src/test/compile-fail
24 - MSYS_BITS: 32
25 RUST_CONFIGURE_ARGS: --build=i686-pc-windows-msvc
26 SCRIPT: python x.py test src/test/run-pass src/test/compile-fail
24 27
25 # MSVC aux tests 28 # MSVC aux tests
26 - MSYS_BITS: 64 29 - MSYS_BITS: 64
27 RUST_CHECK_TARGET: check-aux 30 RUST_CHECK_TARGET: check-aux AUX_ARGS="--exclude src/tools/cargotest --exclude src/tools/cargo"
31 RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-msvc
32 - MSYS_BITS: 64
33 SCRIPT: python x.py test src/tools/cargotest src/tools/cargo
28 RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-msvc 34 RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-msvc
29 35
30 # MSVC tools tests 36 # MSVC tools tests