Changed ruby version

This commit is contained in:
Conor.McManus 2019-02-15 10:19:55 +01:00
parent f8905f1f0c
commit ad7677b8c9

4
Jenkinsfile vendored
View file

@ -1,11 +1,11 @@
pipeline { pipeline {
agent { agent {
docker 'ruby:2.3' docker 'ruby:2.5.1'
} }
stages { stages {
stage('deploy') { stage('deploy') {
steps { steps {
sh 'bundle install && cap production deploy' sh 'gem install bundler && bundle install && cap production deploy'
} }
} }
} }