Matvey 3 years ago
parent
commit
cd27401d74
1 changed files with 9 additions and 9 deletions
  1. 9
    9
      Jenkinsfile

+ 9
- 9
Jenkinsfile View File

@@ -17,25 +17,25 @@ pipeline {
17 17
 					git url: 'git@code.bizgaze.com:unibase/apps.git', credentialsId: 'jenkins_ssh_key'
18 18
 				}
19 19
 				dir('unibase/platform.automation') {
20
-					git url: 'git@code.bizgaze.com:unibase/platform.automation.git', credentialsId: 'jenkins_ssh_key'
20
+					git url: 'git@code.bizgaze.com:unibase/automation.git', credentialsId: 'jenkins_ssh_key'
21 21
 				}
22 22
 				dir('unibase/platform.common') {
23
-					git url: 'git@code.bizgaze.com:unibase/platform.common.git', credentialsId: 'jenkins_ssh_key'
23
+					git url: 'git@code.bizgaze.com:unibase/common.git', credentialsId: 'jenkins_ssh_key'
24 24
 				}
25 25
 				dir('unibase/core') {
26 26
 					git url: 'git@code.bizgaze.com:unibase/core.git', credentialsId: 'jenkins_ssh_key'
27 27
 				}
28 28
 				dir('unibase/platform.datasources') {
29
-					git url: 'git@code.bizgaze.com:unibase/platform.datasources.git', credentialsId: 'jenkins_ssh_key'
29
+					git url: 'git@code.bizgaze.com:unibase/datasources.git', credentialsId: 'jenkins_ssh_key'
30 30
 				}
31 31
 				dir('unibase/platform.gps') {
32
-					git url: 'git@code.bizgaze.com:unibase/platform.gps.git', credentialsId: 'jenkins_ssh_key'
32
+					git url: 'git@code.bizgaze.com:unibase/gps.git', credentialsId: 'jenkins_ssh_key'
33 33
 				}
34 34
 				dir('unibase/helpers') {
35 35
 					git url: 'git@code.bizgaze.com:unibase/helpers.git', credentialsId: 'jenkins_ssh_key'
36 36
 				}
37 37
 				dir('unibase/platform.integrations') {
38
-					git url: 'git@code.bizgaze.com:unibase/platform.integrations.git', credentialsId: 'jenkins_ssh_key'
38
+					git url: 'git@code.bizgaze.com:unibase/integrations.git', credentialsId: 'jenkins_ssh_key'
39 39
 				}
40 40
 				dir('unibase/mongdbprovider') {
41 41
 					git url: 'git@code.bizgaze.com:unibase/mongdbprovider.git', credentialsId: 'jenkins_ssh_key'
@@ -53,10 +53,10 @@ pipeline {
53 53
 					git url: 'git@code.bizgaze.com:unibase/platform.server.git', credentialsId: 'jenkins_ssh_key'
54 54
 				}
55 55
 				dir('unibase/platform.templates') {
56
-					git url: 'git@code.bizgaze.com:unibase/platform.templates.git', credentialsId: 'jenkins_ssh_key'
56
+					git url: 'git@code.bizgaze.com:unibase/templates.git', credentialsId: 'jenkins_ssh_key'
57 57
 				}
58 58
 				dir('unibase/platform.themes') {
59
-					git url: 'git@code.bizgaze.com:unibase/platform.themes.git', credentialsId: 'jenkins_ssh_key'
59
+					git url: 'git@code.bizgaze.com:unibase/themes.git', credentialsId: 'jenkins_ssh_key'
60 60
 				}
61 61
 				dir('unibase/unibase.reference') {
62 62
 					git url: 'git@code.bizgaze.com:unibase/unibase.reference.git', credentialsId: 'jenkins_ssh_key'
@@ -197,12 +197,12 @@ pipeline {
197 197
 			emailext body: "${currentBuild.currentResult}: Job   ${env.JOB_NAME} build ${env.BUILD_NUMBER}\n More info at: ${env.BUILD_URL}",
198 198
 			recipientProviders: [[$class: 'DevelopersRecipientProvider'], [$class: 'RequesterRecipientProvider']],
199 199
 			subject: "Jenkins Build ${currentBuild.currentResult}: Job ${env.JOB_NAME}"
200
-		}/*
200
+		}
201 201
 		always {
202 202
             deleteDir()
203 203
         }
204 204
 		cleanup {
205 205
             cleanWs()
206
-        }*/
206
+        }
207 207
 	}
208 208
 }

Loading…
Cancel
Save