From a089d8eaa1088032c6502088451c63b3855d88e2 Mon Sep 17 00:00:00 2001 From: Niels de Vos Date: Fri, 29 May 2020 10:44:37 +0200 Subject: [PATCH] ci: use correct refspec for fetching PRs in jjb-validate job Also use https, instead of http for the repository. Signed-off-by: Niels de Vos --- jobs/jjb-validate.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jobs/jjb-validate.yaml b/jobs/jjb-validate.yaml index 89d48fc37..538ebc486 100644 --- a/jobs/jjb-validate.yaml +++ b/jobs/jjb-validate.yaml @@ -11,11 +11,11 @@ days-to-keep: 7 artifact-days-to-keep: 7 dsl: | - def GIT_REPO = 'http://github.com/ceph/ceph-csi' + def GIT_REPO = 'https://github.com/ceph/ceph-csi' def GIT_BRANCH = 'ci/centos' if (params.ghprbPullId != null) { - GIT_BRANCH = "pr/${ghprbPullId}/head" + GIT_BRANCH = "pull/${ghprbPullId}/head" } node {