mirror of
https://github.com/status-im/Vulkan-Docs.git
synced 2025-01-11 14:34:08 +00:00
18 lines
505 B
Python
Executable File
18 lines
505 B
Python
Executable File
#!/usr/bin/python3
|
|
|
|
from genspec import *
|
|
|
|
buildBranch('1.0',
|
|
coreTargets = True,
|
|
repoDir = '/home/tree/git/Vulkan-Docs',
|
|
outDir = '/home/tree/git/Vulkan-Web-Registry/specs')
|
|
buildBranch('1.0-wsi_extensions',
|
|
coreTargets = False,
|
|
repoDir = '/home/tree/git/Vulkan-Docs',
|
|
outDir = '/home/tree/git/Vulkan-Web-Registry/specs')
|
|
|
|
print('echo Info: post-generation cleanup')
|
|
print('git checkout ' + coreBranch)
|
|
|
|
createTags(buildOnFriday())
|