4
0
mirror of https://github.com/QuasarApp/QuasarAppCI.git synced 2025-05-04 09:19:38 +00:00
This commit is contained in:
Andrei Yankovich 2021-03-30 17:21:02 +03:00
parent 5553e1fbef
commit 0ff555d92d

@ -269,30 +269,31 @@ class Make(BaseModule):
def doForce(steps):
return getPreviousStepStatus(steps)
factory.addStep(
steps.Git(
repourl=util.Interpolate('%(prop:repository)s'),
branch=util.Interpolate('%(prop:branch)s'),
mode='full',
method='fresh',
submodules=True,
warnOnFailure=True,
haltOnFailure=False,
name='git operations',
description='operations of git like pull clone fetch',
),
factory.addSteps([
steps.Git(
repourl=util.Interpolate('%(prop:repository)s'),
branch=util.Interpolate('%(prop:branch)s'),
mode='full',
method='fresh',
submodules=True,
warnOnFailure=True,
haltOnFailure=False,
name='git operations',
description='operations of git like pull clone fetch',
),
steps.Git(
repourl=util.Interpolate('%(prop:repository)s'),
branch=util.Interpolate('%(prop:branch)s'),
mode='full',
method='clobber',
submodules=True,
name='git operations force',
doStepIf=doForce,
description='operations of git like pull clone' +
'fetch (force remove all old data)',
)
steps.Git(
repourl=util.Interpolate('%(prop:repository)s'),
branch=util.Interpolate('%(prop:branch)s'),
mode='full',
method='clobber',
submodules=True,
name='git operations force',
doStepIf=doForce,
description='operations of git like pull clone' +
'fetch (force remove all old data)',
)
]
)
# factory.addStep(self.checkSupportedBuildSystems())