Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2021-08-03 20:21:39 +0000
committerThomas Watson2021-08-03 21:54:56 +0000
commitdc4d17178b6c643924f1d10bd211e95b73121968 (patch)
tree0ef0fe6e69041abe4f0e7fc90ff9caf977b25eec
parent005994e26c8345f42eb03b22bfddc3e98b8f9a0f (diff)
downloadrt.equinox.framework-dc4d17178b6c643924f1d10bd211e95b73121968.tar.gz
rt.equinox.framework-dc4d17178b6c643924f1d10bd211e95b73121968.tar.xz
rt.equinox.framework-dc4d17178b6c643924f1d10bd211e95b73121968.zip
Stop using git protocol for binaries repo
Change-Id: I19666aa5ab7f8995b7c9e45a931dc69297bf36f5 Signed-off-by: Thomas Watson <tjwatson@us.ibm.com> Reviewed-on: https://git.eclipse.org/r/c/equinox/rt.equinox.framework/+/183666 Tested-by: Equinox Bot <equinox-bot@eclipse.org>
-rw-r--r--Jenkinsfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Jenkinsfile b/Jenkinsfile
index 0db8ebf63..e809324c7 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -19,7 +19,7 @@ pipeline {
stage('get binaries') {
steps{
dir ('rt.equinox.binaries') {
- checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [[$class: 'CloneOption', timeout: 120]], submoduleCfg: [], userRemoteConfigs: [[url: 'git://git.eclipse.org/gitroot/equinox/rt.equinox.binaries.git']]])
+ checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [[$class: 'CloneOption', timeout: 120]], submoduleCfg: [], userRemoteConfigs: [[url: 'https://git.eclipse.org/r/equinox/rt.equinox.binaries.git']]])
}
}
}

Back to the top