Matvey 3 years ago
parent
commit
d08a269888
1 changed files with 10 additions and 1 deletions
  1. 10
    1
      Jenkinsfile

+ 10
- 1
Jenkinsfile View File

@@ -8,7 +8,16 @@ pipeline {
8 8
 		stage('Restore packages') {
9 9
             steps {
10 10
             	dir('unibase/platform.tenants') {
11
-					git credentialsId: 'bizgaze_ssh_key', url: 'https://code.bizgaze.com/unibase/tenants.git'
11
+					/*git credentialsId: 'bizgaze_ssh_key', url: 'https://code.bizgaze.com/unibase/tenants.git'*/
12
+
13
+					checkout([$class: 'GitSCM',
14
+						branches: [[name: '*/master' ]],
15
+						extensions: scm.extensions,
16
+						userRemoteConfigs: [[
17
+							url: 'https://code.bizgaze.com/unibase/tenants.git',
18
+							credentialsId: 'bizgaze_ssh_key'
19
+						]]
20
+					])
12 21
 				}
13 22
 				dir('unibase/platform.analytics') {
14 23
 					git url: 'https://code.bizgaze.com/unibase/analytics.git'

Loading…
Cancel
Save