fix
Bizgaze/solution/pipeline/head There was a failure building this commit

Этот коммит содержится в:
2021-08-03 17:41:38 -07:00
родитель 61e357c505
Коммит cd27401d74
поставляемый
+9 -9
Просмотреть файл
@@ -17,25 +17,25 @@ pipeline {
git url: 'git@code.bizgaze.com:unibase/apps.git', credentialsId: 'jenkins_ssh_key' git url: 'git@code.bizgaze.com:unibase/apps.git', credentialsId: 'jenkins_ssh_key'
} }
dir('unibase/platform.automation') { 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') { 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') { dir('unibase/core') {
git url: 'git@code.bizgaze.com:unibase/core.git', credentialsId: 'jenkins_ssh_key' git url: 'git@code.bizgaze.com:unibase/core.git', credentialsId: 'jenkins_ssh_key'
} }
dir('unibase/platform.datasources') { 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') { 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') { dir('unibase/helpers') {
git url: 'git@code.bizgaze.com:unibase/helpers.git', credentialsId: 'jenkins_ssh_key' git url: 'git@code.bizgaze.com:unibase/helpers.git', credentialsId: 'jenkins_ssh_key'
} }
dir('unibase/platform.integrations') { 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') { dir('unibase/mongdbprovider') {
git url: 'git@code.bizgaze.com:unibase/mongdbprovider.git', credentialsId: 'jenkins_ssh_key' 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' git url: 'git@code.bizgaze.com:unibase/platform.server.git', credentialsId: 'jenkins_ssh_key'
} }
dir('unibase/platform.templates') { 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') { 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') { dir('unibase/unibase.reference') {
git url: 'git@code.bizgaze.com:unibase/unibase.reference.git', credentialsId: 'jenkins_ssh_key' 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}", emailext body: "${currentBuild.currentResult}: Job ${env.JOB_NAME} build ${env.BUILD_NUMBER}\n More info at: ${env.BUILD_URL}",
recipientProviders: [[$class: 'DevelopersRecipientProvider'], [$class: 'RequesterRecipientProvider']], recipientProviders: [[$class: 'DevelopersRecipientProvider'], [$class: 'RequesterRecipientProvider']],
subject: "Jenkins Build ${currentBuild.currentResult}: Job ${env.JOB_NAME}" subject: "Jenkins Build ${currentBuild.currentResult}: Job ${env.JOB_NAME}"
}/* }
always { always {
deleteDir() deleteDir()
} }
cleanup { cleanup {
cleanWs() cleanWs()
}*/ }
} }
} }