forked from swiftlang/swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build-presets.ini
624 lines (454 loc) · 14.5 KB
/
build-presets.ini
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
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
#===--- build-presets.ini - Option presets for building Swift --------------===#
#
## This source file is part of the Swift.org open source project
##
## Copyright (c) 2014 - 2015 Apple Inc. and the Swift project authors
## Licensed under Apache License v2.0 with Runtime Library Exception
##
## See http://swift.org/LICENSE.txt for license information
## See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
#
#===------------------------------------------------------------------------===#
#===------------------------------------------------------------------------===#
# Buildbots for Darwin OSes
#===------------------------------------------------------------------------===#
[preset: mixin_buildbot_install_components]
dash-dash
swift-install-components=compiler;clang-builtin-headers;stdlib;sdk-overlay;editor-integration;tools;testsuite-tools;sourcekit-xpc-service
[preset: mixin_buildbot_trunk_base]
# Build standard library and SDK overlay for iOS device and simulator.
ios
tvos
watchos
test
validation-test
dash-dash
verbose-build=1
build-ninja
swift-sdks=OSX;IOS;IOS_SIMULATOR;TVOS;TVOS_SIMULATOR;WATCHOS;WATCHOS_SIMULATOR
# Build static standard library because it is used
# to build external projects.
build-swift-static-stdlib=1
compiler-vendor=apple
darwin-crash-reporter-client=0
install-swift=1
# Path to the root of the installation filesystem.
install-destdir=%(install_destdir)s
# Path to the .tar.gz package we would create.
installable-package=%(installable_package)s
# If someone uses this for incremental builds, force reconfiguration.
reconfigure
[preset: buildbot,tools=RA,stdlib=DA]
mixin-preset=
mixin_buildbot_trunk_base
mixin_buildbot_install_components
# Build Release without debug info, because it is faster to build.
release
assertions
dash-dash
swift-stdlib-build-type=Debug
swift-stdlib-enable-assertions=true
[preset: buildbot,tools=RA,stdlib=RD]
mixin-preset=
mixin_buildbot_trunk_base
mixin_buildbot_install_components
# Build Release without debug info, because it is faster to build.
release
assertions
dash-dash
swift-stdlib-build-type=RelWithDebInfo
swift-stdlib-enable-assertions=false
[preset: buildbot,tools=RA,stdlib=RDA]
mixin-preset=
mixin_buildbot_trunk_base
mixin_buildbot_install_components
# Build Release without debug info, because it is faster to build.
release
assertions
dash-dash
swift-stdlib-build-type=RelWithDebInfo
swift-stdlib-enable-assertions=true
# This is a release non-incremental build. Run sil-verify-all.
sil-verify-all
[preset: buildbot,tools=RA,stdlib=RD,test=no]
mixin-preset=
mixin_buildbot_trunk_base
mixin_buildbot_install_components
# Build Release without debug info, because it is faster to build.
release
assertions
dash-dash
swift-stdlib-build-type=RelWithDebInfo
swift-stdlib-enable-assertions=false
# Disable osx tests.
skip-test-osx
# Disable non-x86.
skip-build-ios
skip-test-ios
skip-build-tvos
skip-test-tvos
skip-build-watchos
skip-test-watchos
swift-sdks=OSX
swift-primary-variant-sdk=OSX
swift-primary-variant-arch=x86_64
[preset: mixin_buildbot_tools_RA_stdlib_RDA]
mixin-preset=
mixin_buildbot_trunk_base
mixin_buildbot_install_components
# Build Release without debug info, because it is faster to build.
release
assertions
# Also run tests in optimized modes.
test-optimized
dash-dash
swift-stdlib-build-type=RelWithDebInfo
swift-stdlib-enable-assertions=true
# This is a release non-incremental build. Run sil-verify-all.
sil-verify-all
[preset: mixin_buildbot_tools_RA_stdlib_RD]
mixin-preset=
mixin_buildbot_trunk_base
mixin_buildbot_install_components
# Build Release without debug info, because it is faster to build.
release
assertions
dash-dash
swift-stdlib-build-type=RelWithDebInfo
swift-stdlib-enable-assertions=false
[preset: mixin_buildbot_tools_RA_stdlib_DA]
mixin-preset=
mixin_buildbot_trunk_base
mixin_buildbot_install_components
# Build Release without debug info, because it is faster to build.
release
assertions
dash-dash
swift-stdlib-build-type=Debug
swift-stdlib-enable-assertions=true
[preset: buildbot,tools=RA,stdlib=DA]
mixin-preset=
mixin_buildbot_tools_RA_stdlib_DA
[preset: buildbot,tools=RA,stdlib=RD]
mixin-preset=
mixin_buildbot_tools_RA_stdlib_RD
[preset: buildbot,tools=RA,stdlib=RDA]
mixin-preset=
mixin_buildbot_tools_RA_stdlib_RDA
[preset: buildbot,tools=RA,stdlib=DA,NotvOS]
mixin-preset=
mixin_buildbot_tools_RA_stdlib_DA
mixin_NotvOS
[preset: buildbot,tools=RA,stdlib=RD,NotvOS]
mixin-preset=
mixin_buildbot_tools_RA_stdlib_RD
mixin_NotvOS
[preset: buildbot,tools=RA,stdlib=RDA,NotvOS]
mixin-preset=
mixin_buildbot_tools_RA_stdlib_RDA
mixin_NotvOS
#===------------------------------------------------------------------------===#
# Incremental buildbots for Darwin OSes
#===------------------------------------------------------------------------===#
[preset: buildbot_incremental_base]
# Build standard library and SDK overlay for iOS device and simulator.
ios
tvos
test
validation-test
dash-dash
# On buildbots, always force a reconfiguration to make sure we pick up changes
# in the build-script and build-presets.ini.
reconfigure
verbose-build=1
build-ninja
# Don't build static standard library to speed up the build.
build-swift-static-stdlib=0
compiler-vendor=apple
[preset: mixin_NotvOS]
dash-dash
swift-sdks=OSX;IOS;IOS_SIMULATOR;WATCHOS;WATCHOS_SIMULATOR
skip-build-tvos
skip-test-tvos
swift-enable-target-appletvos=0
[preset: buildbot_incremental,tools=RA,stdlib=RA]
mixin-preset=buildbot_incremental_base
build-subdir=buildbot_incremental
# Build Release without debug info, because it is faster to build.
release
assertions
# Build llbuild & swiftpm here
llbuild
#swiftpm
dash-dash
# Only run OS X tests to make the build cycle faster.
# We still build the iOS standard library though -- it is free given the
# parallelism.
skip-test-ios
skip-test-tvos
skip-test-watchos
[preset: buildbot_incremental,tools=RA,stdlib=RA,OnlytvOS]
mixin-preset=buildbot_incremental_base
build-subdir=buildbot_incremental_OnlytvOS
# Build Release without debug info, because it is faster to build.
release
assertions
dash-dash
# This preset runs only tvOS tests.
skip-test-osx
skip-test-ios
skip-test-watchos
[preset: buildbot_incremental,tools=RA,stdlib=RA,NotvOS]
mixin-preset=
buildbot_incremental,tools=RA,stdlib=RA
mixin_NotvOS
build-subdir=buildbot_incremental_NotvOS
[preset: buildbot_incremental_asan,tools=RDA,stdlib=RDA]
mixin-preset=buildbot_incremental_base
build-subdir=buildbot_incremental_asan
# Build Release with debug info, so that we can symbolicate backtraces.
release-debuginfo
assertions
dash-dash
# FIXME: Swift/ASan does not support iOS yet.
skip-build-ios
skip-test-ios
# FIXME: Swift/ASan does not support tvos yet.
skip-build-tvos
skip-test-tvos
# FIXME: Swift/ASan does not support watchos yet.
skip-build-watchos
skip-test-watchos
enable-asan
[preset: buildbot_incremental_asan,tools=DA,stdlib=RDA]
mixin-preset=buildbot_incremental_base
build-subdir=buildbot_incremental_asan_debug
# Build Release with debug info, so that we can symbolicate backtraces.
assertions
dash-dash
# FIXME: Swift/ASan does not support iOS yet.
skip-build-ios
skip-test-ios
# FIXME: Swift/ASan does not support tvos yet.
skip-build-tvos
skip-test-tvos
# FIXME: Swift/ASan does not support watchos yet.
skip-build-watchos
skip-test-watchos
enable-asan
swift-stdlib-build-type=RelWithDebInfo
[preset: buildbot_incremental_cross_compile_iphoneos,tools=RA,stdlib=RA]
mixin-preset=buildbot_incremental_base
build-subdir=buildbot_incremental_cross_compile_iphoneos
# Build Release without debug info, because it is faster to build.
release
assertions
dash-dash
cross-compile-tools-deployment-targets=iphoneos-arm64 iphoneos-armv7 iphoneos-armv7s
[preset: buildbot_incremental_cross_compile_iphonesimulator,tools=RA,stdlib=RA]
mixin-preset=buildbot_incremental_base
build-subdir=buildbot_incremental_cross_compile_iphonesimulator
# Build Release without debug info, because it is faster to build.
release
assertions
dash-dash
cross-compile-tools-deployment-targets=iphonesimulator-i386 iphonesimulator-x86_64
#===------------------------------------------------------------------------===#
# A setting to run a buildbot that passes extra swift args when compiling
# modules that match regexp.
#
# This is currently used to run non-default pass orderings to stress the
# optimizer. See utils/pass-pipeline.
#===------------------------------------------------------------------------===#
[preset: buildbot_incremental_extra_swift_args,tools=RA,stdlib=RD]
build-subdir=buildbot_incremental_extra_swift_args
# Build standard library and SDK overlay for iOS device and simulator.
test
validation-test
extra-swift-args=%(extra_swift_args)s
release
assertions
dash-dash
# On buildbots, always force a reconfiguration to make sure we pick up changes
# in the build-script and build-presets.ini.
reconfigure
verbose-build=1
build-ninja
# Don't build static standard library to speed up the build.
build-swift-static-stdlib=0
skip-build-ios
skip-test-ios
skip-build-lldb
compiler-vendor=apple
sil-verify-all
#===------------------------------------------------------------------------===#
# Convenience aliases
#
# Do not use on buildbots!
#===------------------------------------------------------------------------===#
[preset: buildbot_incremental]
mixin-preset=buildbot_incremental,tools=RA,stdlib=RA
[preset: asan]
mixin-preset=buildbot_incremental_asan,tools=RDA,stdlib=RDA
#===------------------------------------------------------------------------===#
# Special Runtime Builders
#===------------------------------------------------------------------------===#
[preset: buildbot_incremental_special,tools=RA,stdlib=RD]
# Build release+asserts
release
assertions
dash-dash
# Disable ios. These builders are x86 only.
skip-ios
skip-tvos
skip-watchos
# Disable x86 testing. skip-ios disables testing of ios as well.
skip-test-osx
# We want our stdlib to not have assertions.
swift-stdlib-enable-assertions=false
# Always reconfigure so we pick up changes in the build-script and
# build-presets.ini.
reconfigure
verbose-build=1
build-ninja
# Don't build static standard library to speed up the build.
build-swift-static-stdlib=0
compiler-vendor=apple
[preset: buildbot_incremental_special_dtrace,tools=RA,stdlib=RD]
mixin-preset=buildbot_incremental_special,tools=RA,stdlib=RD
build-subdir=buildbot_incremental_special_dtrace
dash-dash
swift-runtime-enable-dtrace=1
[preset: buildbot_incremental_special_leaks,tools=RA,stdlib=RD]
mixin-preset=buildbot_incremental_special,tools=RA,stdlib=RD
build-subdir=buildbot_incremental_special_leaks
dash-dash
swift-runtime-enable-leak-checker=1
#===------------------------------------------------------------------------===#
# Package Builders
#===------------------------------------------------------------------------===#
# A mixin that enables 'lightweight' assertions that don't slow down the
# compiler significantly.
[preset: mixin_lightweight_assertions]
assertions
# FIXME: This should be:
# no-assertions
# swift-assertions
# ... but our tests are expecting assertions to be either on or off everywhere.
dash-dash
# AST verifier slows down the compiler significantly.
swift-enable-ast-verifier=0
#===------------------------------------------------------------------------===#
# Linux Builders
#===------------------------------------------------------------------------===#
[preset: mixin_linux_installation]
mixin-preset=mixin_lightweight_assertions
llbuild
swiftpm
xctest
dash-dash
install-swift
install-lldb
install-llbuild
install-swiftpm
install-xctest
install-prefix=/usr
swift-install-components=compiler;clang-builtin-headers;stdlib;sdk-overlay;dev
build-swift-static-stdlib=1
skip-test-lldb=1
# Executes the lit tests for the installable package that is created
# Assumes the swift-package-tests repo is checked out
test-installable-package=1
# Path to the root of the installation filesystem.
install-destdir=%(install_destdir)s
# Path to the .tar.gz package we would create.
installable-package=%(installable_package)s
# This preset builds foundation
[preset: buildbot_linux_1510]
mixin-preset=mixin_linux_installation
build-subdir=buildbot_linux
lldb
release
test
validation-test
foundation
dash-dash
install-foundation
reconfigure
# This preset does not build Foundation due to unavailable ICU versions on Ubuntu 14.04
[preset: buildbot_linux_1404]
mixin-preset=mixin_linux_installation
build-subdir=buildbot_linux
lldb
release
test
validation-test
foundation
dash-dash
install-foundation
reconfigure
#===------------------------------------------------------------------------===#
# OS X Package Builders
#===------------------------------------------------------------------------===#
[preset: mixin_osx_package_base]
ios
tvos
watchos
lldb
llbuild
swiftpm
# Build with debug info, this allows us to symbolicate crashes from
# production builds.
release-debuginfo
dash-dash
lldb-no-debugserver
lldb-build-type=Release
verbose-build=1
build-ninja
build-swift-static-stdlib=1
compiler-vendor=apple
swift-sdks=OSX;IOS;IOS_SIMULATOR;TVOS;TVOS_SIMULATOR;WATCHOS;WATCHOS_SIMULATOR
install-swift=1
install-lldb=1
install-llbuild=1
install-swiftpm=1
install-destdir=%(install_destdir)s
darwin-install-extract-symbols=1
# Path where debug symbols will be installed.
install-symroot=%(install_symroot)s
# Path where the compiler, the runtime and the standard libraries will be
# installed.
install-prefix=%(install_toolchain_dir)s/usr
# Executes the lit tests for the installable package that is created
# Assumes the swift-package-tests repo is checked out
# test-installable-package=0
# If someone uses this for incremental builds, force reconfiguration.
reconfigure
[preset: mixin_osx_package_test]
build-subdir=buildbot_osx
ios
tvos
watchos
test
validation-test
dash-dash
skip-test-lldb
# Path to the .tar.gz package we would create.
installable-package=%(installable_package)s
[preset: buildbot_osx_package]
mixin-preset=
mixin_osx_package_base
mixin_osx_package_test
mixin_lightweight_assertions
dash-dash
swift-install-components=compiler;clang-builtin-headers;stdlib;sdk-overlay;sourcekit-xpc-service
llvm-install-components=libclang;clang-headers
# Path to the .tar.gz package we would create.
installable-package=%(installable_package)s
# Path to the .tar.gz symbols package
symbols-package=%(symbols_package)s
# Info.plist
darwin-toolchain-bundle-identifier=%(darwin_toolchain_bundle_identifier)s
darwin-toolchain-display-name=%(darwin_toolchain_display_name)s
darwin-toolchain-name=%(darwin_toolchain_xctoolchain_name)s
darwin-toolchain-version=%(darwin_toolchain_version)s