This commit is contained in:
vbawol 2017-04-06 11:57:39 -05:00 committed by GitHub
parent f94d829085
commit 5202188c40

15
Jenkinsfile vendored
View File

@ -4,7 +4,20 @@ pipeline {
stage('checkout') { stage('checkout') {
steps { steps {
node (label: 'testing') { node (label: 'testing') {
checkout scm checkout scm
}
}
}
stage('build') {
steps {
node (label: 'testing') {
fileExists 'README.md'
}
}
}
stage('release') {
steps {
node (label: 'testing') {
fileExists 'README.md' fileExists 'README.md'
} }
} }