Minor fix to build scripts.

This commit is contained in:
Jon Leech 2016-10-01 01:36:38 -07:00
parent 348990517c
commit 42fcc80976
2 changed files with 25 additions and 13 deletions

View File

@ -19,14 +19,6 @@ from genspec import *
print('echo Building in Vulkan-Docs for public release') print('echo Building in Vulkan-Docs for public release')
print('') print('')
buildBranch('1.0',
extensions = None,
apititle = None,
xmlTargets = 'clobber install doc_install',
specTargets = 'xhtml styleguide manhtml manhtmlpages pdf manpdf',
repoDir = '/home/tree/git/Vulkan-Docs',
outDir = '/home/tree/git/Vulkan-Web-Registry/specs')
buildBranch('1.0-wsi_extensions', buildBranch('1.0-wsi_extensions',
extensions = KHRextensions, extensions = KHRextensions,
apititle = '(with KHR extensions)', apititle = '(with KHR extensions)',
@ -43,6 +35,16 @@ buildBranch('1.0-extensions',
repoDir = '/home/tree/git/Vulkan-Docs', repoDir = '/home/tree/git/Vulkan-Docs',
outDir = '/home/tree/git/Vulkan-Web-Registry/specs') outDir = '/home/tree/git/Vulkan-Web-Registry/specs')
# Only build ref pages for 1.0 target
buildBranch('1.0',
extensions = None,
apititle = None,
xmlTargets = 'clobber install doc_install',
specTargets = 'xhtml styleguide manhtml manhtmlpages pdf manpdf',
repoDir = '/home/tree/git/Vulkan-Docs',
outDir = '/home/tree/git/Vulkan-Web-Registry/specs',
needRefSources = True)
print('echo Info: post-generation cleanup') print('echo Info: post-generation cleanup')
createTags(buildOnFriday()) createTags(buildOnFriday())

View File

@ -77,11 +77,12 @@ def buildOnFriday():
# specTargets = targets to build in doc/specs/vulkan/ # specTargets = targets to build in doc/specs/vulkan/
# miscSrc = path to copy misc files from, if non-None # miscSrc = path to copy misc files from, if non-None
# miscDst = path to copy misc files to, if non-None # miscDst = path to copy misc files to, if non-None
# needRefSources = True if ref pages must be extracted from the spec sources
def buildRelease(label, extensions, outdir, def buildRelease(label, extensions, outdir,
apititle, apititle,
xmlDir, xmlTargets, xmlDir, xmlTargets,
specDir, specTargets, specDir, specTargets,
miscSrc = None, miscDst = None): miscSrc = None, miscDst = None, needRefSources = False):
print('echo Info: Generating target=', label, print('echo Info: Generating target=', label,
'outdir=' + outdir) 'outdir=' + outdir)
@ -112,10 +113,16 @@ def buildRelease(label, extensions, outdir,
print('cd', xmlDir) print('cd', xmlDir)
print('make', outarg, xmlTargets) print('make', outarg, xmlTargets)
# print('echo Info: Generating spec') # print('echo Info: Generating ref pages sources and spec targets')
print('cd', specDir) print('cd', specDir)
print('make', outarg, 'clean') print('make', outarg, 'clean')
print('make -k -j 8', # This is a temporary workaround for a dependency bug - if any of the
# specTargets require ref page sources, and they aren't already present
# at the time the make is invoked, that target will not be built.
if needRefSources:
print('make', outarg, extarg, 'man/apispec.txt')
# Now make the actual targets.
print('make -O -k -j 8',
outarg, outarg,
extarg, extarg,
titlearg, titlearg,
@ -125,11 +132,14 @@ def buildRelease(label, extensions, outdir,
if (miscSrc != None and miscDst != None): if (miscSrc != None and miscDst != None):
print('cp', miscSrc + '/*.txt', miscDst + '/') print('cp', miscSrc + '/*.txt', miscDst + '/')
print('')
# Build all target documents # Build all target documents
# repoDir = path to the Vulkan git repo containing the specs # repoDir = path to the Vulkan git repo containing the specs
# outDir = path to the output base directory in which targets are generated # outDir = path to the output base directory in which targets are generated
def buildBranch(targetDir, extensions, apititle, xmlTargets, specTargets, repoDir, outDir): def buildBranch(targetDir, extensions, apititle,
xmlTargets, specTargets,
repoDir, outDir, needRefSources = False):
# Directory with vk.xml and generation tools # Directory with vk.xml and generation tools
xmlDir = repoDir + '/src/spec' xmlDir = repoDir + '/src/spec'
# Directory with spec sources # Directory with spec sources
@ -141,7 +151,7 @@ def buildBranch(targetDir, extensions, apititle, xmlTargets, specTargets, repoDi
buildRelease(targetDir, extensions, outDir + '/' + targetDir, buildRelease(targetDir, extensions, outDir + '/' + targetDir,
apititle, apititle,
xmlDir, xmlTargets, specDir, specTargets, xmlDir, xmlTargets, specDir, specTargets,
miscSrc, miscDst) miscSrc, miscDst, needRefSources)
# Commands to tag the git branches # Commands to tag the git branches
# tagdate = date to tag the tree with when done # tagdate = date to tag the tree with when done