Add initial Jenkinsfile

This commit is contained in:
admin 2018-01-06 13:09:50 -08:00
parent 57015ce8a8
commit 23d7e2402f

20
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,20 @@
pipeline {
agent any
stages {
stage('bundle') {
steps {
sh 'bundle'
}
}
stage('rake test') {
steps {
sh 'bundle exec rake test'
}
}
stage('module:build') {
steps {
sh 'bundle exec rake module:build'
}
}
}
}