From c2e10c6fa9df7c435814601e828f831ce5e839ef Mon Sep 17 00:00:00 2001 From: RichardG867 Date: Mon, 28 Mar 2022 21:31:25 -0300 Subject: [PATCH] Jenkins: Use configured repository/branch for branch builds --- .ci/Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.ci/Jenkinsfile b/.ci/Jenkinsfile index 3d4fa7e13..d468ebe95 100644 --- a/.ci/Jenkinsfile +++ b/.ci/Jenkinsfile @@ -16,9 +16,9 @@ */ /* ['main builds', 'branch builds'] */ -def repository = ['https://github.com/86Box/86Box.git', 'https://github.com/richardg867/86Box.git'] +def repository = ['https://github.com/86Box/86Box.git', GIT_URL] def commitBrowser = ['https://github.com/86Box/86Box/commit/%s', null] -def branch = ['master', 'cleanup30'] +def branch = ['master', GIT_BRANCH] def buildType = ['beta', 'alpha'] def buildBranch = env.JOB_BASE_NAME.contains('-') ? 1 : 0