Jenkins: Fix build

This commit is contained in:
RichardG867
2022-03-28 21:35:38 -03:00
parent c2e10c6fa9
commit efcc9496f7

4
.ci/Jenkinsfile vendored
View File

@@ -16,9 +16,9 @@
*/ */
/* ['main builds', 'branch builds'] */ /* ['main builds', 'branch builds'] */
def repository = ['https://github.com/86Box/86Box.git', GIT_URL] def repository = ['https://github.com/86Box/86Box.git', env.GIT_URL]
def commitBrowser = ['https://github.com/86Box/86Box/commit/%s', null] def commitBrowser = ['https://github.com/86Box/86Box/commit/%s', null]
def branch = ['master', GIT_BRANCH] def branch = ['master', env.GIT_BRANCH]
def buildType = ['beta', 'alpha'] def buildType = ['beta', 'alpha']
def buildBranch = env.JOB_BASE_NAME.contains('-') ? 1 : 0 def buildBranch = env.JOB_BASE_NAME.contains('-') ? 1 : 0