-
Notifications
You must be signed in to change notification settings - Fork 14
/
Jenkinsfile
31 lines (29 loc) · 863 Bytes
/
Jenkinsfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
pipeline {
agent any
stages {
stage('') {
steps {
parallel(
"testa": {
dir ('master') {
checkout([
$class: 'GitSCM', branches: [[name: '*/master']],
doGenerateSubmoduleConfigurations: false,
extensions: [],
submoduleCfg: [],
userRemoteConfigs: [[url: 'https://github.com/v55448330/docker-registry-face.git']]])
}
dir ('test') {
checkout([
$class: 'GitSCM', branches: [[name: '*/test']],
doGenerateSubmoduleConfigurations: false,
extensions: [],
submoduleCfg: [],
userRemoteConfigs: [[url: 'https://github.com/v55448330/docker-registry-face.git']]])
}
}
)
}
}
}
}