File tree Expand file tree Collapse file tree 3 files changed +13
-10
lines changed
swift_build_support/swift_build_support/products Expand file tree Collapse file tree 3 files changed +13
-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 11
11
# ----------------------------------------------------------------------------
12
12
13
13
import os
14
+ import sys
14
15
15
16
from . import earlyswiftsyntax
16
17
from . import product
@@ -42,6 +43,11 @@ def is_before_build_script_impl_product(cls):
42
43
return True
43
44
44
45
def should_build (self , host_target ):
46
+ # Temporarily disable for non-darwin since this build never works
47
+ # outside of that case currently.
48
+ if sys .platform != 'darwin' :
49
+ return False
50
+
45
51
if self .is_cross_compile_target (host_target ):
46
52
return False
47
53
Original file line number Diff line number Diff line change 10
10
#
11
11
# ----------------------------------------------------------------------------
12
12
13
+ import sys
14
+
13
15
from . import cmake_product
14
16
from .. import toolchain
15
17
@@ -32,6 +34,11 @@ def is_before_build_script_impl_product(cls):
32
34
return True
33
35
34
36
def should_build (self , host_target ):
37
+ # Temporarily disable for non-darwin since this build never works
38
+ # outside of that case currently.
39
+ if sys .platform != 'darwin' :
40
+ return False
41
+
35
42
if self .args .build_early_swiftsyntax :
36
43
if toolchain .host_toolchain ().find_tool ("swift" ) is None :
37
44
warn_msg = 'Host toolchain could not locate a ' \
You can’t perform that action at this time.
0 commit comments