File tree Expand file tree Collapse file tree 3 files changed +10
-10
lines changed
swift_build_support/swift_build_support/products Expand file tree Collapse file tree 3 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -890,11 +890,6 @@ installable-package=%(installable_package)s
890
890
# in Linux CI bots
891
891
relocate-xdg-cache-home-under-build-subdir
892
892
893
- # Temporarily disable early swift driver/syntax builds so that linux images
894
- # can use the swift release images as a base.
895
- skip-early-swift-driver
896
- skip-early-swiftsyntax
897
-
898
893
[preset: buildbot_linux_base]
899
894
mixin-preset =
900
895
mixin_linux_installation
@@ -1149,11 +1144,6 @@ reconfigure
1149
1144
# in Linux CI bots
1150
1145
relocate-xdg-cache-home-under-build-subdir
1151
1146
1152
- # Temporarily disable early swift driver/syntax builds so that linux images
1153
- # can use the swift release images as a base.
1154
- skip-early-swift-driver
1155
- skip-early-swiftsyntax
1156
-
1157
1147
[preset: buildbot_incremental_linux]
1158
1148
mixin-preset =
1159
1149
buildbot_incremental_linux_base
Original file line number Diff line number Diff line change @@ -42,6 +42,11 @@ def is_before_build_script_impl_product(cls):
42
42
return True
43
43
44
44
def should_build (self , host_target ):
45
+ # Temporarily disable for non-darwin since this build never works
46
+ # outside of that case currently.
47
+ if sys .platform != 'darwin' :
48
+ return False
49
+
45
50
if self .is_cross_compile_target (host_target ):
46
51
return False
47
52
Original file line number Diff line number Diff line change @@ -32,6 +32,11 @@ def is_before_build_script_impl_product(cls):
32
32
return True
33
33
34
34
def should_build (self , host_target ):
35
+ # Temporarily disable for non-darwin since this build never works
36
+ # outside of that case currently.
37
+ if sys .platform != 'darwin' :
38
+ return False
39
+
35
40
if self .args .build_early_swiftsyntax :
36
41
if toolchain .host_toolchain ().find_tool ("swift" ) is None :
37
42
warn_msg = 'Host toolchain could not locate a ' \
You can’t perform that action at this time.
0 commit comments