Supply the now required branch parameter to the "build" script.

This commit is contained in:
Colin Finck 2019-09-07 16:16:51 +02:00
parent 0007bd48ad
commit c082d60e6e
No known key found for this signature in database
GPG Key ID: 1BA74E70456BA1A9

View File

@ -122,7 +122,7 @@ scripts_root = "../../"
Build = util.BuildFactory()
Build.addStep(steps.GitHub(repourl='https://github.com/reactos/web-content.git', mode='full', haltOnFailure=True))
Build.addStep(steps.ShellCommand(name="build", command=[scripts_root + "build"], haltOnFailure=True))
Build.addStep(steps.ShellCommand(name="build", command=[scripts_root + "build", util.WithProperties('%(branch)s')], haltOnFailure=True))
Build.addStep(steps.ShellCommand(name="deploy", command=[scripts_root + "deploy", util.WithProperties('%(branch)s'), util.WithProperties('%(author)s')], haltOnFailure=True))
c['builders'] = [