-
-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathstage-build.yml
More file actions
377 lines (332 loc) · 10.5 KB
/
stage-build.yml
File metadata and controls
377 lines (332 loc) · 10.5 KB
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
parameters:
DoPGO: false
# DoPGOARM64 only applies if DoPGO is also true
DoPGOARM64: true
DoFreethreaded: false
ToBeSigned: false
ExtraOptions: ''
ExtraOptionsFreethreaded: '--disable-gil'
TailCallingOption: ''
jobs:
- job: Build_Docs
displayName: Docs build
dependsOn: []
workspace:
clean: all
steps:
- template: ./checkout.yml
- script: Doc\make.bat html
displayName: 'Build HTML docs'
env:
BUILDDIR: $(Build.BinariesDirectory)\Doc
- task: CopyFiles@2
displayName: 'Assemble artifact: Doc'
inputs:
sourceFolder: $(Build.BinariesDirectory)\Doc
targetFolder: $(Build.ArtifactStagingDirectory)\Doc
contents: |
html\**\*
- publish: $(Build.ArtifactStagingDirectory)\Doc
artifact: doc
displayName: 'Publish artifact: doc'
- job: Build_Python
displayName: Python build
dependsOn: []
workspace:
clean: all
strategy:
matrix:
win32:
Name: win32
Arch: win32
Platform: x86
Configuration: Release
_HostPython: .\python
ExtraOptions: ${{ parameters.ExtraOptions }}
${{ if eq(parameters.ToBeSigned, 'true') }}:
Artifact: unsigned_win32
${{ else }}:
Artifact: bin_win32
win32_d:
Name: win32_d
Arch: win32
Platform: x86
Configuration: Debug
_HostPython: .\python
ExtraOptions: ${{ parameters.ExtraOptions }}
Artifact: bin_win32_d
${{ if ne(parameters.DoPGO, 'true') }}:
amd64:
Name: amd64
Arch: amd64
Platform: x64
Configuration: Release
_HostPython: .\python
ExtraOptions: ${{ parameters.ExtraOptions }} ${{ parameters.TailCallingOption }}
${{ if eq(parameters.ToBeSigned, 'true') }}:
Artifact: unsigned_amd64
${{ else }}:
Artifact: bin_amd64
amd64_d:
Name: amd64_d
Arch: amd64
Platform: x64
Configuration: Debug
_HostPython: .\python
ExtraOptions: ${{ parameters.ExtraOptions }}
Artifact: bin_amd64_d
${{ if or(ne(parameters.DoPGO, 'true'), ne(parameters.DoPGOARM64, 'true')) }}:
arm64:
Name: arm64
Arch: arm64
Platform: ARM64
Configuration: Release
_HostPython: python
ExtraOptions: ${{ parameters.ExtraOptions }}
${{ if eq(parameters.ToBeSigned, 'true') }}:
Artifact: unsigned_arm64
${{ else }}:
Artifact: bin_arm64
arm64_d:
Name: arm64_d
Arch: arm64
Platform: ARM64
Configuration: Debug
_HostPython: python
ExtraOptions: ${{ parameters.ExtraOptions }}
Artifact: bin_arm64_d
${{ if eq(parameters.DoFreethreaded, 'true') }}:
win32_t:
Name: win32_t
Arch: win32
Platform: x86
Configuration: Release
_HostPython: .\python
ExtraOptions: ${{ parameters.ExtraOptionsFreethreaded }}
${{ if eq(parameters.ToBeSigned, 'true') }}:
Artifact: unsigned_win32_t
${{ else }}:
Artifact: bin_win32_t
win32_td:
Name: win32_td
Arch: win32
Platform: x86
Configuration: Debug
_HostPython: .\python
ExtraOptions: ${{ parameters.ExtraOptionsFreethreaded }}
Artifact: bin_win32_td
${{ if ne(parameters.DoPGO, 'true') }}:
amd64_t:
Name: amd64_t
Arch: amd64
Platform: x64
Configuration: Release
_HostPython: .\python
ExtraOptions: ${{ parameters.ExtraOptionsFreethreaded }} ${{ parameters.TailCallingOption }}
${{ if eq(parameters.ToBeSigned, 'true') }}:
Artifact: unsigned_amd64_t
${{ else }}:
Artifact: bin_amd64_t
amd64_td:
Name: amd64_td
Arch: amd64
Platform: x64
Configuration: Debug
_HostPython: .\python
ExtraOptions: ${{ parameters.ExtraOptionsFreethreaded }}
Artifact: bin_amd64_td
${{ if or(ne(parameters.DoPGO, 'true'), ne(parameters.DoPGOARM64, 'true')) }}:
arm64_t:
Name: arm64_t
Arch: arm64
Platform: ARM64
Configuration: Release
_HostPython: python
ExtraOptions: ${{ parameters.ExtraOptionsFreethreaded }}
${{ if eq(parameters.ToBeSigned, 'true') }}:
Artifact: unsigned_arm64_t
${{ else }}:
Artifact: bin_arm64_t
arm64_td:
Name: arm64_td
Arch: arm64
Platform: ARM64
Configuration: Debug
_HostPython: python
ExtraOptions: ${{ parameters.ExtraOptionsFreethreaded }}
Artifact: bin_arm64_td
steps:
- template: ./build-steps.yml
- ${{ if eq(parameters.DoPGO, 'true') }}:
- job: Build_Python_PGO_Native
displayName: Python PGO build
dependsOn: []
workspace:
clean: all
strategy:
matrix:
amd64:
Name: amd64
Arch: amd64
Platform: x64
_HostPython: .\python
PythonExePattern: python.exe
ExtraOptions: ${{ parameters.ExtraOptions }} ${{ parameters.TailCallingOption }}
${{ if eq(parameters.ToBeSigned, 'true') }}:
Artifact: unsigned_amd64
${{ else }}:
Artifact: bin_amd64
${{ if eq(parameters.DoFreethreaded, 'true') }}:
amd64_t:
Name: amd64_t
Arch: amd64
Platform: x64
_HostPython: .\python
PythonExePattern: python3*t.exe
ExtraOptions: ${{ parameters.ExtraOptionsFreethreaded }} ${{ parameters.TailCallingOption }}
${{ if eq(parameters.ToBeSigned, 'true') }}:
Artifact: unsigned_amd64_t
${{ else }}:
Artifact: bin_amd64_t
steps:
- template: ./build-steps-pgo.yml
parameters:
PGInstrument: true
PGRun: true
PGUpdate: true
- ${{ if eq(parameters.DoPGOARM64, 'true') }}:
- job: Build_Python_PGO_1
displayName: Python PGO build
dependsOn: []
workspace:
clean: all
variables:
Arch: arm64
Platform: ARM64
_HostPython: python
strategy:
matrix:
arm64:
Name: arm64
PythonExePattern: python.exe
ExtraOptions: ${{ parameters.ExtraOptions }}
${{ if eq(parameters.ToBeSigned, 'true') }}:
Artifact: unsigned_arm64
${{ else }}:
Artifact: bin_arm64
${{ if eq(parameters.DoFreethreaded, 'true') }}:
arm64_t:
Name: arm64_t
PythonExePattern: python3*t.exe
ExtraOptions: ${{ parameters.ExtraOptionsFreethreaded }}
${{ if eq(parameters.ToBeSigned, 'true') }}:
Artifact: unsigned_arm64_t
${{ else }}:
Artifact: bin_arm64_t
steps:
- template: ./build-steps-pgo.yml
parameters:
PGInstrument: true
- job: Build_Python_PGO_2
displayName: Collect PGO profile
dependsOn: Build_Python_PGO_1
# Allow up to five hours for PGO run
timeoutInMinutes: 300
pool:
name: 'Windows ARM64'
workspace:
clean: all
variables:
Arch: arm64
Platform: ARM64
strategy:
matrix:
arm64:
Name: arm64
PythonExePattern: python.exe
${{ if eq(parameters.ToBeSigned, 'true') }}:
Artifact: unsigned_arm64
${{ else }}:
Artifact: bin_arm64
${{ if eq(parameters.DoFreethreaded, 'true') }}:
arm64_t:
Name: arm64_t
PythonExePattern: python3*t.exe
${{ if eq(parameters.ToBeSigned, 'true') }}:
Artifact: unsigned_arm64_t
${{ else }}:
Artifact: bin_arm64_t
steps:
- template: ./build-steps-pgo.yml
parameters:
PGRun: true
- job: Build_Python_PGO_3
displayName: Merge PGO profile
dependsOn: Build_Python_PGO_2
workspace:
clean: all
variables:
Arch: arm64
Platform: ARM64
_HostPython: python
strategy:
matrix:
arm64:
Name: arm64
PythonExePattern: python.exe
ExtraOptions: ${{ parameters.ExtraOptions }}
${{ if eq(parameters.ToBeSigned, 'true') }}:
Artifact: unsigned_arm64
${{ else }}:
Artifact: bin_arm64
${{ if eq(parameters.DoFreethreaded, 'true') }}:
arm64_t:
Name: arm64_t
PythonExePattern: python3*t.exe
ExtraOptions: ${{ parameters.ExtraOptionsFreethreaded }}
${{ if eq(parameters.ToBeSigned, 'true') }}:
Artifact: unsigned_arm64_t
${{ else }}:
Artifact: bin_arm64_t
steps:
- template: ./build-steps-pgo.yml
parameters:
PGUpdate: true
- job: TclTk_Lib
displayName: Publish Tcl/Tk Library
dependsOn: []
variables:
IncludeLLVM: false
workspace:
clean: all
steps:
- template: ./checkout.yml
- script: PCbuild\get_externals.bat --no-openssl --no-libffi
displayName: 'Get external dependencies'
- task: MSBuild@1
displayName: 'Copy Tcl/Tk lib for publish'
inputs:
solution: PCbuild\tcltk.props
platform: x86
msbuildArguments: /t:CopyTclTkLib /p:OutDir="$(Build.ArtifactStagingDirectory)\tcl_win32"
- task: MSBuild@1
displayName: 'Copy Tcl/Tk lib for publish'
inputs:
solution: PCbuild\tcltk.props
platform: x64
msbuildArguments: /t:CopyTclTkLib /p:OutDir="$(Build.ArtifactStagingDirectory)\tcl_amd64"
- task: MSBuild@1
displayName: 'Copy Tcl/Tk lib for publish'
inputs:
solution: PCbuild\tcltk.props
platform: ARM64
msbuildArguments: /t:CopyTclTkLib /p:OutDir="$(Build.ArtifactStagingDirectory)\tcl_arm64"
- publish: '$(Build.ArtifactStagingDirectory)\tcl_win32'
artifact: tcltk_lib_win32
displayName: 'Publish artifact: tcltk_lib_win32'
- publish: '$(Build.ArtifactStagingDirectory)\tcl_amd64'
artifact: tcltk_lib_amd64
displayName: 'Publish artifact: tcltk_lib_amd64'
- publish: '$(Build.ArtifactStagingDirectory)\tcl_arm64'
artifact: tcltk_lib_arm64
displayName: 'Publish artifact: tcltk_lib_arm64'