Jenkinsfile in brightbox-cli-2.12.0 vs Jenkinsfile in brightbox-cli-3.0.0
- old
+ new
@@ -7,20 +7,9 @@
cron('@monthly')
}
stages {
stage("Run tests") {
parallel {
- stage("Ruby 1.9.3") {
- agent {
- docker {
- image 'ruby:1.9.3'
- }
- }
- steps {
- sh 'BUNDLE_APP_CONFIG=/tmp/bundle.config BUNDLE_DISABLE_SHARED_GEMS=true bundle install --deployment'
- sh 'BUNDLE_APP_CONFIG=/tmp/bundle.config bundle exec rake test'
- }
- }
stage("Ruby 2.0") {
agent {
docker {
image 'ruby:2.0'
}