4
0
mirror of https://github.com/QuasarApp/QuasarAppCI.git synced 2025-05-05 17:59:38 +00:00
This commit is contained in:
Andrei Yankovich 2020-10-19 21:24:15 +03:00
parent cec074b676
commit 15b1898e59
2 changed files with 2 additions and 9 deletions

@ -58,7 +58,8 @@ class BuildBotShedulers(BuildBotModule):
'clean': True,
'test': True,
'release': False,
'deploy': True
'deploy': True,
'copyFolder': 'Distro'
},
treeStableTimer=60
),

@ -30,14 +30,6 @@ class Docs(CMake):
'Generate docs for the project',
self.isDeploy)]
def mkDirProp(props):
return ['mkdir', '-p', str(props.getProperty('copyFolder'))]
res += [self.generateStep(mkDirProp,
platform,
'create dir ',
self.isDeploy)]
res += [steps.CopyDirectory(
src="docs/html",
dest=util.Interpolate('%(prop:copyFolder)s'))]