Compare commits

...

2 Commits

Author SHA1 Message Date
R. Tyler Croy b4690aac44
brackets! 2018-09-19 08:43:16 -07:00
R. Tyler Croy 47b2308cd8
Simple Jenkins Pipeline 2018-09-19 08:41:39 -07:00
1 changed files with 20 additions and 0 deletions

20
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,20 @@
pipeline {
agent any
stages {
stage('Build') {
steps {
sh 'printenv'
}
}
stage('Test') {
steps {
sh 'printenv'
}
}
stage('Deploy') {
steps {
sh 'printenv'
}
}
}
}