vereto-api/Jenkinsfile

15 lines
230 B
Text
Raw Permalink Normal View History

2018-03-07 13:51:03 +00:00
pipeline {
2018-03-07 20:05:43 +00:00
agent {
2019-02-15 10:19:55 +01:00
docker 'ruby:2.5.1'
2018-03-07 20:05:43 +00:00
}
2018-03-07 13:51:03 +00:00
stages {
stage('deploy') {
steps {
2019-02-15 10:19:55 +01:00
sh 'gem install bundler && 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
}