Skip to content

Commit b9f0304

Browse files
committed
temporarily enable mac and windows tests on bors try
testing platform-specific changes
1 parent c338729 commit b9f0304

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

src/ci/azure-pipelines/try.yml

+30
Original file line numberDiff line numberDiff line change
@@ -82,3 +82,33 @@ jobs:
8282
# INITIAL_RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-msvc --enable-extended --enable-profiler
8383
# SCRIPT: python x.py dist
8484
# DEPLOY_ALT: 1
85+
86+
- job: macOS
87+
timeoutInMinutes: 600
88+
pool:
89+
vmImage: macos-10.15
90+
steps:
91+
- template: steps/run.yml
92+
strategy:
93+
matrix:
94+
x86_64-apple:
95+
SCRIPT: ./x.py test
96+
INITIAL_RUST_CONFIGURE_ARGS: --build=x86_64-apple-darwin --enable-sanitizers --enable-profiler --set rust.jemalloc
97+
RUSTC_RETRY_LINKER_ON_SEGFAULT: 1
98+
MACOSX_DEPLOYMENT_TARGET: 10.8
99+
MACOSX_STD_DEPLOYMENT_TARGET: 10.7
100+
NO_LLVM_ASSERTIONS: 1
101+
NO_DEBUG_ASSERTIONS: 1
102+
- job: Windows
103+
timeoutInMinutes: 600
104+
pool:
105+
vmImage: 'vs2017-win2016'
106+
steps:
107+
- template: steps/run.yml
108+
strategy:
109+
matrix:
110+
x86_64-msvc:
111+
INITIAL_RUST_CONFIGURE_ARGS: >
112+
--build=x86_64-pc-windows-msvc
113+
--enable-profiler
114+
SCRIPT: python x.py test

0 commit comments

Comments
 (0)