From cd27401d74de9478d7add0f2b971dedf97d35106 Mon Sep 17 00:00:00 2001 From: Matvey Date: Tue, 3 Aug 2021 17:41:38 -0700 Subject: [PATCH] fix --- Jenkinsfile | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 26834cb..a434e0b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -17,25 +17,25 @@ pipeline { git url: 'git@code.bizgaze.com:unibase/apps.git', credentialsId: 'jenkins_ssh_key' } dir('unibase/platform.automation') { - git url: 'git@code.bizgaze.com:unibase/platform.automation.git', credentialsId: 'jenkins_ssh_key' + git url: 'git@code.bizgaze.com:unibase/automation.git', credentialsId: 'jenkins_ssh_key' } dir('unibase/platform.common') { - git url: 'git@code.bizgaze.com:unibase/platform.common.git', credentialsId: 'jenkins_ssh_key' + git url: 'git@code.bizgaze.com:unibase/common.git', credentialsId: 'jenkins_ssh_key' } dir('unibase/core') { git url: 'git@code.bizgaze.com:unibase/core.git', credentialsId: 'jenkins_ssh_key' } dir('unibase/platform.datasources') { - git url: 'git@code.bizgaze.com:unibase/platform.datasources.git', credentialsId: 'jenkins_ssh_key' + git url: 'git@code.bizgaze.com:unibase/datasources.git', credentialsId: 'jenkins_ssh_key' } dir('unibase/platform.gps') { - git url: 'git@code.bizgaze.com:unibase/platform.gps.git', credentialsId: 'jenkins_ssh_key' + git url: 'git@code.bizgaze.com:unibase/gps.git', credentialsId: 'jenkins_ssh_key' } dir('unibase/helpers') { git url: 'git@code.bizgaze.com:unibase/helpers.git', credentialsId: 'jenkins_ssh_key' } dir('unibase/platform.integrations') { - git url: 'git@code.bizgaze.com:unibase/platform.integrations.git', credentialsId: 'jenkins_ssh_key' + git url: 'git@code.bizgaze.com:unibase/integrations.git', credentialsId: 'jenkins_ssh_key' } dir('unibase/mongdbprovider') { git url: 'git@code.bizgaze.com:unibase/mongdbprovider.git', credentialsId: 'jenkins_ssh_key' @@ -53,10 +53,10 @@ pipeline { git url: 'git@code.bizgaze.com:unibase/platform.server.git', credentialsId: 'jenkins_ssh_key' } dir('unibase/platform.templates') { - git url: 'git@code.bizgaze.com:unibase/platform.templates.git', credentialsId: 'jenkins_ssh_key' + git url: 'git@code.bizgaze.com:unibase/templates.git', credentialsId: 'jenkins_ssh_key' } dir('unibase/platform.themes') { - git url: 'git@code.bizgaze.com:unibase/platform.themes.git', credentialsId: 'jenkins_ssh_key' + git url: 'git@code.bizgaze.com:unibase/themes.git', credentialsId: 'jenkins_ssh_key' } dir('unibase/unibase.reference') { git url: 'git@code.bizgaze.com:unibase/unibase.reference.git', credentialsId: 'jenkins_ssh_key' @@ -197,12 +197,12 @@ pipeline { emailext body: "${currentBuild.currentResult}: Job ${env.JOB_NAME} build ${env.BUILD_NUMBER}\n More info at: ${env.BUILD_URL}", recipientProviders: [[$class: 'DevelopersRecipientProvider'], [$class: 'RequesterRecipientProvider']], subject: "Jenkins Build ${currentBuild.currentResult}: Job ${env.JOB_NAME}" - }/* + } always { deleteDir() } cleanup { cleanWs() - }*/ + } } }