Skip to content

Commit de9bbc4

Browse files
[DO NOT MERGE] enable mingw builders on try
1 parent 62893bf commit de9bbc4

File tree

1 file changed

+46
-33
lines changed

1 file changed

+46
-33
lines changed

src/ci/azure-pipelines/try.yml

+46-33
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,17 @@ variables:
66
- group: prod-credentials
77

88
jobs:
9-
- job: Linux
10-
timeoutInMinutes: 600
11-
pool:
12-
vmImage: ubuntu-16.04
13-
steps:
14-
- template: steps/run.yml
15-
strategy:
16-
matrix:
17-
dist-x86_64-linux: {}
18-
dist-x86_64-linux-alt:
19-
IMAGE: dist-x86_64-linux
9+
# - job: Linux
10+
# timeoutInMinutes: 600
11+
# pool:
12+
# vmImage: ubuntu-16.04
13+
# steps:
14+
# - template: steps/run.yml
15+
# strategy:
16+
# matrix:
17+
# dist-x86_64-linux: {}
18+
# dist-x86_64-linux-alt:
19+
# IMAGE: dist-x86_64-linux
2020

2121
# The macOS and Windows builds here are currently disabled due to them not being
2222
# overly necessary on `try` builds. We also don't actually have anything that
@@ -49,25 +49,38 @@ jobs:
4949
# NO_LLVM_ASSERTIONS: 1
5050
# NO_DEBUG_ASSERTIONS: 1
5151
#
52-
# - job: Windows
53-
# timeoutInMinutes: 600
54-
# pool:
55-
# vmImage: 'vs2017-win2016'
56-
# steps:
57-
# - template: steps/run.yml
58-
# strategy:
59-
# matrix:
60-
# dist-x86_64-msvc:
61-
# RUST_CONFIGURE_ARGS: >
62-
# --build=x86_64-pc-windows-msvc
63-
# --target=x86_64-pc-windows-msvc,aarch64-pc-windows-msvc
64-
# --enable-full-tools
65-
# --enable-profiler
66-
# SCRIPT: python x.py dist
67-
# DIST_REQUIRE_ALL_TOOLS: 1
68-
# DEPLOY: 1
69-
#
70-
# dist-x86_64-msvc-alt:
71-
# RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-msvc --enable-extended --enable-profiler
72-
# SCRIPT: python x.py dist
73-
# DEPLOY_ALT: 1
52+
- job: Windows
53+
timeoutInMinutes: 600
54+
pool:
55+
vmImage: 'vs2017-win2016'
56+
steps:
57+
- template: steps/run.yml
58+
strategy:
59+
matrix:
60+
x86_64-mingw-1:
61+
SCRIPT: make ci-mingw-subset-1
62+
RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-gnu
63+
CUSTOM_MINGW: 1
64+
# FIXME(#59637)
65+
NO_DEBUG_ASSERTIONS: 1
66+
NO_LLVM_ASSERTIONS: 1
67+
# x86_64-mingw-2:
68+
# SCRIPT: make ci-mingw-subset-2
69+
# RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-gnu
70+
# CUSTOM_MINGW: 1
71+
# i686-mingw-1:
72+
# RUST_CONFIGURE_ARGS: --build=i686-pc-windows-gnu
73+
# SCRIPT: make ci-mingw-subset-1
74+
# CUSTOM_MINGW: 1
75+
# # FIXME(#59637)
76+
# NO_DEBUG_ASSERTIONS: 1
77+
# NO_LLVM_ASSERTIONS: 1
78+
i686-mingw-2:
79+
RUST_CONFIGURE_ARGS: --build=i686-pc-windows-gnu
80+
SCRIPT: make ci-mingw-subset-2
81+
CUSTOM_MINGW: 1
82+
# dist-i686-mingw:
83+
# RUST_CONFIGURE_ARGS: --build=i686-pc-windows-gnu --enable-full-tools --enable-profiler
84+
# SCRIPT: python x.py dist
85+
# CUSTOM_MINGW: 1
86+
# DIST_REQUIRE_ALL_TOOLS: 1

0 commit comments

Comments
 (0)