mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00

As I suspect libcurl.dll bundled with LDC v1.20 to be the cause for the crashing Phobos unittests. That DLL was upgraded with LDC v1.21 from v7.65.3 to v7.69.1.
72 lines
1.6 KiB
YAML
72 lines
1.6 KiB
YAML
# Learn more: https://aka.ms/yaml
|
|
variables:
|
|
VSINSTALLDIR: C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\
|
|
|
|
jobs:
|
|
- job: Windows_DMD_bootstrap
|
|
timeoutInMinutes: 120
|
|
pool:
|
|
vmImage: 'vs2017-win2016'
|
|
variables:
|
|
D_COMPILER: dmd
|
|
HOST_DMD_VERSION: 2.079.0
|
|
strategy:
|
|
matrix:
|
|
x64:
|
|
OS: Win_64
|
|
MODEL: 64
|
|
ARCH: x64
|
|
x86-OMF:
|
|
OS: Win_32
|
|
MODEL: 32
|
|
ARCH: x86
|
|
steps:
|
|
- template: .azure-pipelines/windows.yml
|
|
|
|
- job: Windows_DMD_latest
|
|
timeoutInMinutes: 120
|
|
pool:
|
|
vmImage: 'vs2017-win2016'
|
|
variables:
|
|
D_COMPILER: dmd
|
|
HOST_DMD_VERSION: LATEST
|
|
strategy:
|
|
matrix:
|
|
x64:
|
|
OS: Win_64
|
|
MODEL: 64
|
|
ARCH: x64
|
|
x86-OMF:
|
|
OS: Win_32
|
|
MODEL: 32
|
|
ARCH: x86
|
|
steps:
|
|
- template: .azure-pipelines/windows.yml
|
|
- template: .azure-pipelines/windows-artifact.yml
|
|
|
|
- job: Windows_VisualD_LDC
|
|
timeoutInMinutes: 120
|
|
pool:
|
|
vmImage: 'vs2017-win2016'
|
|
variables:
|
|
D_COMPILER: ldc
|
|
VISUALD_VER: v0.49.0
|
|
LDC_VERSION: 1.23.0
|
|
strategy:
|
|
matrix:
|
|
x64_Debug:
|
|
OS: Win_64
|
|
MODEL: 64
|
|
ARCH: x64
|
|
CONFIGURATION: Debug
|
|
x86-mscoff:
|
|
OS: Win_32
|
|
MODEL: 32mscoff
|
|
ARCH: x86
|
|
x86-mscoff_MinGW:
|
|
OS: Win_32
|
|
MODEL: 32mscoff
|
|
ARCH: x86
|
|
C_RUNTIME: mingw
|
|
steps:
|
|
- template: .azure-pipelines/windows-visual-studio.yml
|