|
27 | 27 | branches = {
|
28 | 28 | 'main': {
|
29 | 29 | 'llvm-project': 'stable/20220421',
|
| 30 | + 'swift-llvm-bindings': 'stable/20220421', |
30 | 31 | 'swift': 'main',
|
31 | 32 | 'cmark': 'gfm',
|
32 | 33 | 'ninja': 'release',
|
@@ -171,8 +172,8 @@ def clone_repos():
|
171 | 172 | >>> check_execute(['rm', '-rf', tmpdir])
|
172 | 173 | 0
|
173 | 174 | >>> repos #doctest: +NORMALIZE_WHITESPACE
|
174 |
| - ['llvm-project', 'cmark', 'llbuild', 'ninja', 'swift', |
175 |
| - 'swift-corelibs-foundation', 'swift-corelibs-libdispatch', |
| 175 | + ['llvm-project', 'swift-llvm-bindings', 'cmark', 'llbuild', 'ninja', |
| 176 | + 'swift', 'swift-corelibs-foundation', 'swift-corelibs-libdispatch', |
176 | 177 | 'swift-corelibs-xctest', 'swiftpm', 'swift-experimental-string-processing']
|
177 | 178 | """
|
178 | 179 | cpu_count = multiprocessing.cpu_count()
|
@@ -251,6 +252,14 @@ def clone_repos():
|
251 | 252 | branches[swift_branch]['swift-experimental-string-processing'], workspace
|
252 | 253 | ),
|
253 | 254 | ]
|
| 255 | + if swift_branch not in ['release/5.7', 'release/5.6', |
| 256 | + 'release/5.5', 'release/5.4']: |
| 257 | + repos += [ |
| 258 | + '{} [email protected]:apple/swift-llvm-bindings.git ' |
| 259 | + '{}/swift-llvm-bindings '.format( |
| 260 | + branches[swift_branch]['swift-llvm-bindings'], workspace |
| 261 | + ), |
| 262 | + ] |
254 | 263 |
|
255 | 264 | process0 = subprocess.Popen([
|
256 | 265 | 'xargs', '-P%s' % cpu_count, '-n3',
|
|
0 commit comments