-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
87 lines (82 loc) · 1.94 KB
/
azure-pipelines.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
# Learn more: https://aka.ms/yaml
variables:
VSINSTALLDIR: C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\
jobs:
- job: Windows_DMD_bootstrap
timeoutInMinutes: 60
pool:
vmImage: 'windows-2019'
variables:
D_COMPILER: dmd
HOST_DMD_VERSION: 2.079.0
strategy:
matrix:
x64:
MODEL: 64
ARCH: x64
steps:
- template: .azure-pipelines/windows.yml
- job: Windows_DMD_latest
timeoutInMinutes: 60
pool:
vmImage: 'windows-2019'
variables:
D_COMPILER: dmd
HOST_DMD_VERSION: LATEST
strategy:
matrix:
x64:
MODEL: 64
ARCH: x64
x86-OMF:
MODEL: 32omf
ARCH: x86
x86:
MODEL: 32
ARCH: x86
steps:
- template: .azure-pipelines/windows.yml
- template: .azure-pipelines/windows-artifact.yml
- job: Windows_Coverage
timeoutInMinutes: 60
pool:
vmImage: 'windows-2019'
variables:
D_COMPILER: dmd
HOST_DMD_VERSION: LATEST
# Disable actual coverage because of issues with the codecov uploader
DMD_TEST_COVERAGE: 1
strategy:
matrix:
x64:
MODEL: 64
ARCH: x64
# x64 only because 32bit causes weird linker errors for several tests???
# x86-OMF:
# MODEL: 32omf
# ARCH: x86
steps:
- template: .azure-pipelines/windows.yml
- job: Windows_VisualD_LDC
timeoutInMinutes: 60
pool:
vmImage: 'windows-2019'
variables:
D_COMPILER: ldc
VISUALD_VER: v0.49.0
LDC_VERSION: 1.23.0
strategy:
matrix:
x64_Debug:
MODEL: 64
ARCH: x64
CONFIGURATION: Debug
x86-mscoff:
MODEL: 32
ARCH: x86
x86-mscoff_MinGW:
MODEL: 32
ARCH: x86
C_RUNTIME: mingw
steps:
- template: .azure-pipelines/windows-visual-studio.yml