Simple Jenkins Pipeline

This commit is contained in:
R. Tyler Croy 2018-09-19 08:41:39 -07:00 committed by GitHub
parent de7b7f1496
commit 47b2308cd8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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'
}
}
}
}