From 9c26b68783acf259d47abd49675dcfcbdcf9dd02 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Thu, 3 Aug 2017 16:43:22 -0700 Subject: [PATCH] Run the wxlib command for sdist builds --- buildbot/master.cfg | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/buildbot/master.cfg b/buildbot/master.cfg index a4f09185..53b1943e 100644 --- a/buildbot/master.cfg +++ b/buildbot/master.cfg @@ -213,7 +213,7 @@ def makeFactory(port, buildType='buildOnly', pyVer='2.7'): factory = BuildFactory() # Was the build started from the force build form with a "fullclean" - # property set? If so, clobber the git workspace and start fresh. + # property set? If so, fully clobber the git workspace and start fresh. cmd = ['bash', '-c', WithProperties('if [ %(fullclean:-no)s == yes ]; then rm -rf ../Phoenix; echo fully cleaned; fi'), ] @@ -226,7 +226,7 @@ def makeFactory(port, buildType='buildOnly', pyVer='2.7'): clean = '' # Start from a clean build tree for the daily "dist" builds - if buildType in ['dist', 'docs', 'vagrant']: + if buildType in ['dist', 'sdist', 'docs', 'vagrant']: mode = 'full' method = 'clobber' @@ -246,7 +246,7 @@ def makeFactory(port, buildType='buildOnly', pyVer='2.7'): if buildType == 'sdist': cmd = 'python -u build.py %s setrev dox touch etg sip build '\ - 'sdist sdist_demo --upload' % pyVer + 'wxlib sdist sdist_demo --upload' % pyVer elif buildType == 'docs': cmd = 'python -u build.py %s setrev dox touch etg sip build wxlib ' \