Skip to content

Commit

Permalink
Basic pipeline file in place
Browse files Browse the repository at this point in the history
  • Loading branch information
Jim Van Fleet committed May 3, 2017
1 parent 0649c7c commit 1f1151b
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@

pipeline {
agent any

stages {
stage('Build') {
steps {
echo 'make'
}
}
stage('Test'){
steps {
echo 'make check'
echo 'reports/**/*.xml'
}
}
stage('Deploy') {
steps {
echo 'make publish'
}
}
}
}

0 comments on commit 1f1151b

Please sign in to comment.