vereto-api/Jenkinsfile

15 lines
205 B
Text
Raw Normal View History

2018-03-07 13:51:03 +00:00
pipeline {
2018-03-07 20:05:43 +00:00
agent {
docker 'ruby:2.3'
}
2018-03-07 13:51:03 +00:00
stages {
stage('deploy') {
steps {
2018-03-07 20:05:43 +00:00
sh 'bundle install && cap production deploy'
2018-03-07 13:51:03 +00:00
}
}
}
2018-03-07 20:23:46 +00:00
environment {
HOME = '/tmp'
}
2018-03-07 13:51:03 +00:00
}