From feefc55ac988a2329d217ade5e2345197aa4c7d3 Mon Sep 17 00:00:00 2001 From: Matvey Date: Tue, 3 Aug 2021 16:09:16 -0700 Subject: [PATCH] fix --- Jenkinsfile | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 82e3e50..fd0f49d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -8,9 +8,16 @@ pipeline { stage('Restore packages') { steps { dir('unibase/platform.tenants') { - git credentialsId: 'bizgaze_ssh_key', url: 'git@code.bizgaze.com:unibase/tenants.git' - + /*git credentialsId: 'bizgaze_ssh_key', url: 'git@code.bizgaze.com:unibase/tenants.git'*/ + checkout([$class: 'GitSCM', + branches: [[name: '*/master' ]], + extensions: scm.extensions, + userRemoteConfigs: [[ + url: 'git@code.bizgaze.com:unibase/tenants.git', + credentialsId: 'jenkins_ssh_key' + ]] + ]) } dir('unibase/platform.analytics') { git url: 'https://code.bizgaze.com/unibase/analytics.git'