From 1e423826c6bbfed6e23989c3fc7050dd9ac2d28c Mon Sep 17 00:00:00 2001 From: Brian Stinson Date: Tue, 30 Apr 2019 16:22:57 -0500 Subject: [PATCH] CI: add some debug options so we can see what git is doing --- .cico-pr.pipeline | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.cico-pr.pipeline b/.cico-pr.pipeline index 0c57f711..0b759ea0 100644 --- a/.cico-pr.pipeline +++ b/.cico-pr.pipeline @@ -46,9 +46,9 @@ node('factory2'){ } stage('Clone Test Suite') { - onmyduffynode "git clone --single-branch --depth 1 https://pagure.io/fm-orchestrator.git" + onmyduffynode "GIT_TRACE=1 GIT_CURL_VERBOSE=1 git clone --single-branch --depth 1 https://pagure.io/fm-orchestrator.git" onmyduffynode "cd fm-orchestrator && git remote add proposed \"${env.REPO}\"" - onmyduffynode "cd fm-orchestrator && git fetch proposed" + onmyduffynode "cd fm-orchestrator && GIT_TRACE=1 GIT_CURL_VERBOSE=1 git fetch proposed" onmyduffynode "cd fm-orchestrator && git checkout origin/master" onmyduffynode "cd fm-orchestrator && git config --global user.email ci@centos.org" onmyduffynode "cd fm-orchestrator && git config --global user.name CentOS CI"