bitbucket-pipelines.yml in redmine_crm-0.0.41 vs bitbucket-pipelines.yml in redmine_crm-0.0.42

- old
+ new

@@ -1,22 +1,31 @@ # This is a sample build configuration for Ruby. # Check our guides at https://confluence.atlassian.com/x/8r-5Mw for more examples. # Only use spaces to indent your .yml configuration. # ----- # You can specify a custom docker image from Docker Hub as your build environment. -image: ruby:2.3.0 pipelines: default: - step: + name: New ruby + image: ruby:2.4.1 script: - bundle install - bundle exec rake test DB=sqlite - bundle exec rake test DB=postgresql - bundle exec rake test DB=mysql services: - mysql - postgres + - step: + name: Old ruby + image: ruby:1.9.3 + script: + - bundle install + - bundle exec rake test DB=mysql + services: + - mysql definitions: services: mysql: image: mysql:5.7