Disable Windows builds on the auto-tester - replace with Azure pipelines

This commit is contained in:
Sebastian Wilzbach 2020-08-30 17:34:52 +02:00
parent 39af480e23
commit 05f724cb4a
5 changed files with 52 additions and 9 deletions

View file

@ -1,12 +1,12 @@
# Learn more: https://aka.ms/yaml
jobs:
- job: Windows
- job: Windows_Bootstrap
timeoutInMinutes: 120
pool:
vmImage: 'vs2017-win2016'
variables:
VSINSTALLDIR: C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\
HOST_DMD_VERSION: 2.092.1
HOST_DMD_VERSION: 2.079.0
strategy:
matrix:
x64:
@ -17,6 +17,41 @@ jobs:
steps:
- template: .azure-pipelines/windows.yml
- job: Windows
timeoutInMinutes: 120
pool:
vmImage: 'vs2017-win2016'
variables:
VSINSTALLDIR: C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\
HOST_DMD_VERSION: LATEST
strategy:
matrix:
x64:
OS: Win_64
MODEL: 64
ARCH: x64
D_COMPILER: dmd
steps:
- template: .azure-pipelines/windows.yml
- template: .azure-pipelines/windows-artifact.yml
- job: Windows_OMF_Bootstrap
timeoutInMinutes: 120
pool:
vmImage: 'vs2017-win2016'
variables:
VSINSTALLDIR: C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\
HOST_DMD_VERSION: 2.079.0
strategy:
matrix:
win32:
OS: Win_32
MODEL: 32
ARCH: x86
D_COMPILER: dmd
steps:
- template: .azure-pipelines/windows.yml
- job: Windows_OMF
timeoutInMinutes: 120
pool:
@ -33,6 +68,7 @@ jobs:
D_COMPILER: dmd
steps:
- template: .azure-pipelines/windows.yml
- template: .azure-pipelines/windows-artifact.yml
- job: Windows_VisualD
timeoutInMinutes: 120