Skip to content
This repository was archived by the owner on Aug 31, 2021. It is now read-only.

Commit cbd9fe6

Browse files
committed
[[ Win64 ]] Make sure 'fetch' step is understood by buildbot.py
This patch adds 'fetch' to the list of understood steps in buildbot.py to make sure it is invoked.
1 parent 0f323b1 commit cbd9fe6

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

buildbot.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
'js-emscripten-sdk1.35',
5353
)
5454
# The set of build tasks that this branch supports
55-
BUILDBOT_TARGETS = ('config', 'compile', 'bin-archive', 'bin-extract',
55+
BUILDBOT_TARGETS = ('fetch', 'config', 'compile', 'bin-archive', 'bin-extract',
5656
'dist-notes', 'dist-docs', 'dist-server', 'dist-tools', 'dist-upload',
5757
'distmac-archive', 'distmac-extract', 'distmac-disk')
5858

@@ -267,7 +267,9 @@ def buildbot_task(target):
267267
print('Buildbot build step "{}" is not supported'.format(target))
268268
sys.exit(SKIP_EXIT_STATUS)
269269

270-
if target == 'config':
270+
if target == 'fetch':
271+
return do_fetch()
272+
elif target == 'config':
271273
return do_configure()
272274
elif target == 'compile':
273275
return do_compile()

0 commit comments

Comments
 (0)