From ab38784ac7d26dda73a8312ee830818d26446515 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Fri, 31 Jul 2020 17:41:15 -0700 Subject: [PATCH] Add building the wxPython docset to the buildbot job --- buildbot/master.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildbot/master.cfg b/buildbot/master.cfg index 773476b5..189628ee 100644 --- a/buildbot/master.cfg +++ b/buildbot/master.cfg @@ -157,7 +157,7 @@ def makeBuildFactory(wxport, py_ver, build_type='basic'): steps.ShellCommand(name='build wxPython wheel and upload', command=cmd, env=environ)) if build_type == 'docs': - cmd = [PYTHON, 'build.py', 'wxlib', 'sphinx', 'bdist_docs', '--upload'] + common_opts + cmd = [PYTHON, 'build.py', 'wxlib', 'sphinx', 'bdist_docs', 'docset_py', '--upload'] + common_opts factory.addStep( steps.ShellCommand(name='build wxPython documentation and upload', command=cmd, env=environ))