Run the wxlib command for sdist builds

This commit is contained in:
Robin Dunn
2017-08-03 16:43:22 -07:00
parent 052e19116a
commit 9c26b68783

View File

@@ -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 ' \