Skip to content

Commit 78d11ea

Browse files
authored
Merge pull request swiftlang#635 from rxwei/string-processing-checkout
Add support for apple/swift-experimental-string-processing
2 parents 1276628 + 3cc91fc commit 78d11ea

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

cleanup

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ def main():
6464
'swift-collections',
6565
'swift-numerics',
6666
'swift-system',
67+
'swift-experimental-string-processing',
6768
]
6869

6970
if args.cleanup_cache:

common.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
'swift-collections': '1.0.1',
5151
'swift-numerics': '1.0.1',
5252
'swift-system': '1.1.1',
53+
'swift-experimental-string-processing': 'dev/6',
5354
},
5455
'release/5.6': {
5556
'llvm-project': 'swift/release/5.6',
@@ -157,7 +158,7 @@ def clone_repos():
157158
>>> repos #doctest: +NORMALIZE_WHITESPACE
158159
['llvm-project', 'cmark', 'llbuild', 'ninja', 'swift',
159160
'swift-corelibs-foundation', 'swift-corelibs-libdispatch',
160-
'swift-corelibs-xctest', 'swiftpm']
161+
'swift-corelibs-xctest', 'swiftpm', 'swift-experimental-string-processing']
161162
"""
162163
cpu_count = multiprocessing.cpu_count()
163164
workspace = private_workspace('.')
@@ -230,6 +231,10 @@ def clone_repos():
230231
'{}/swift-system '.format(
231232
branches[swift_branch]['swift-system'], workspace
232233
),
234+
'{} [email protected]:apple/swift-experimental-string-processing.git '
235+
'{}/swift-experimental-string-processing '.format(
236+
branches[swift_branch]['swift-experimental-string-processing'], workspace
237+
),
233238
]
234239

235240
process0 = subprocess.Popen([

0 commit comments

Comments
 (0)