forked from openshift/coredns-mdns
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfile
14 lines (14 loc) · 894 Bytes
/
Jenkinsfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pipeline {
agent any
stages {
stage('Build') {
steps {
checkout([$class: 'GitSCM', branches: [[name: '**']], doGenerateSubmoduleConfigurations: false, extensions: [[$class: 'RelativeTargetDirectory', relativeTargetDir: 'src'], [$class: 'CleanBeforeCheckout']], submoduleCfg: [], userRemoteConfigs: [[url: 'https://github.com/openshift/coredns-mdns']]])
checkout([$class: 'GitSCM', branches: [[name: '**']], doGenerateSubmoduleConfigurations: false, extensions: [[$class: 'RelativeTargetDirectory', relativeTargetDir: 'mdns-ci'], [$class: 'CleanBeforeCheckout']], submoduleCfg: [], userRemoteConfigs: [[url: 'https://github.com/cybertron/mdns-ci']]])
lock('mdns') {
sh label: '', script: '${WORKSPACE}/mdns-ci/coredns-mdns-integration coredns-mdns'
}
}
}
}
}