2016-01-22 12:01:38 -05:00
|
|
|
image: "ruby:2.2"
|
2016-01-22 08:45:34 -05:00
|
|
|
|
|
|
|
services:
|
|
|
|
- mysql:latest
|
|
|
|
- postgres:latest
|
|
|
|
- redis:latest
|
|
|
|
|
|
|
|
variables:
|
|
|
|
MYSQL_ALLOW_EMPTY_PASSWORD: "1"
|
|
|
|
|
2015-06-04 10:54:32 -04:00
|
|
|
before_script:
|
2016-01-22 12:16:59 -05:00
|
|
|
- source ./scripts/prepare_build.sh
|
2015-06-03 16:05:33 -04:00
|
|
|
- ruby -v
|
|
|
|
- which ruby
|
2015-06-17 06:23:43 -04:00
|
|
|
- gem install bundler --no-ri --no-rdoc
|
2015-06-03 16:05:33 -04:00
|
|
|
- cp config/gitlab.yml.example config/gitlab.yml
|
|
|
|
- touch log/application.log
|
|
|
|
- touch log/test.log
|
2015-06-17 06:23:43 -04:00
|
|
|
- bundle install --without postgres production --jobs $(nproc) "${FLAGS[@]}"
|
2016-01-18 19:43:04 -05:00
|
|
|
- RAILS_ENV=test bundle exec rake db:drop db:create db:schema:load db:migrate
|
2015-06-23 10:43:24 -04:00
|
|
|
|
|
|
|
spec:feature:
|
|
|
|
script:
|
2015-12-27 21:37:50 -05:00
|
|
|
- RAILS_ENV=test bundle exec rake assets:precompile 2>/dev/null
|
2015-06-23 10:43:24 -04:00
|
|
|
- RAILS_ENV=test SIMPLECOV=true bundle exec rake spec:feature
|
|
|
|
tags:
|
|
|
|
- ruby
|
|
|
|
- mysql
|
|
|
|
|
|
|
|
spec:api:
|
|
|
|
script:
|
|
|
|
- RAILS_ENV=test SIMPLECOV=true bundle exec rake spec:api
|
|
|
|
tags:
|
|
|
|
- ruby
|
|
|
|
- mysql
|
|
|
|
|
2015-12-09 04:51:01 -05:00
|
|
|
spec:models:
|
|
|
|
script:
|
|
|
|
- RAILS_ENV=test SIMPLECOV=true bundle exec rake spec:models
|
|
|
|
tags:
|
|
|
|
- ruby
|
|
|
|
- mysql
|
|
|
|
|
2015-12-09 05:56:23 -05:00
|
|
|
spec:lib:
|
|
|
|
script:
|
|
|
|
- RAILS_ENV=test SIMPLECOV=true bundle exec rake spec:lib
|
|
|
|
tags:
|
|
|
|
- ruby
|
|
|
|
- mysql
|
|
|
|
|
|
|
|
spec:services:
|
|
|
|
script:
|
|
|
|
- RAILS_ENV=test SIMPLECOV=true bundle exec rake spec:services
|
|
|
|
tags:
|
|
|
|
- ruby
|
|
|
|
- mysql
|
|
|
|
|
2015-10-02 11:00:23 -04:00
|
|
|
spec:benchmark:
|
|
|
|
script:
|
|
|
|
- RAILS_ENV=test bundle exec rake spec:benchmark
|
|
|
|
tags:
|
|
|
|
- ruby
|
|
|
|
- mysql
|
2015-10-05 05:08:52 -04:00
|
|
|
allow_failure: true
|
2015-10-02 11:00:23 -04:00
|
|
|
|
2015-06-23 10:43:24 -04:00
|
|
|
spec:other:
|
|
|
|
script:
|
|
|
|
- RAILS_ENV=test SIMPLECOV=true bundle exec rake spec:other
|
|
|
|
tags:
|
|
|
|
- ruby
|
|
|
|
- mysql
|
|
|
|
|
2015-12-09 04:50:38 -05:00
|
|
|
spinach:project:half:
|
2015-06-15 05:00:13 -04:00
|
|
|
script:
|
2015-12-09 04:50:38 -05:00
|
|
|
- RAILS_ENV=test SIMPLECOV=true bundle exec rake spinach:project:half
|
|
|
|
tags:
|
|
|
|
- ruby
|
|
|
|
- mysql
|
|
|
|
|
|
|
|
spinach:project:rest:
|
2015-06-15 05:00:13 -04:00
|
|
|
script:
|
2015-12-09 04:50:38 -05:00
|
|
|
- RAILS_ENV=test SIMPLECOV=true bundle exec rake spinach:project:rest
|
2015-06-15 05:00:13 -04:00
|
|
|
tags:
|
|
|
|
- ruby
|
|
|
|
- mysql
|
|
|
|
|
2015-06-23 10:43:24 -04:00
|
|
|
spinach:other:
|
2015-06-15 05:00:13 -04:00
|
|
|
script:
|
2015-06-23 10:43:24 -04:00
|
|
|
- RAILS_ENV=test SIMPLECOV=true bundle exec rake spinach:other
|
2015-06-15 05:00:13 -04:00
|
|
|
tags:
|
|
|
|
- ruby
|
|
|
|
- mysql
|
|
|
|
|
2015-06-28 16:27:40 -04:00
|
|
|
teaspoon:
|
2015-06-15 05:00:13 -04:00
|
|
|
script:
|
2015-06-28 16:27:40 -04:00
|
|
|
- RAILS_ENV=test bundle exec teaspoon
|
2015-06-15 05:00:13 -04:00
|
|
|
tags:
|
|
|
|
- ruby
|
|
|
|
- mysql
|
|
|
|
|
2015-06-23 10:43:24 -04:00
|
|
|
rubocop:
|
2015-06-15 05:00:13 -04:00
|
|
|
script:
|
|
|
|
- bundle exec rubocop
|
|
|
|
tags:
|
|
|
|
- ruby
|
|
|
|
- mysql
|
|
|
|
|
2015-06-23 10:43:24 -04:00
|
|
|
brakeman:
|
2015-06-15 05:00:13 -04:00
|
|
|
script:
|
|
|
|
- bundle exec rake brakeman
|
|
|
|
tags:
|
|
|
|
- ruby
|
2015-06-17 06:23:43 -04:00
|
|
|
- mysql
|
2015-11-10 12:34:05 -05:00
|
|
|
|
|
|
|
flog:
|
|
|
|
script:
|
|
|
|
- bundle exec rake flog
|
|
|
|
tags:
|
|
|
|
- ruby
|
|
|
|
- mysql
|
2015-11-11 10:29:00 -05:00
|
|
|
|
|
|
|
flay:
|
|
|
|
script:
|
|
|
|
- bundle exec rake flay
|
|
|
|
tags:
|
|
|
|
- ruby
|
|
|
|
- mysql
|
2015-11-23 08:57:41 -05:00
|
|
|
|
2015-11-23 09:21:38 -05:00
|
|
|
bundler:audit:
|
2016-01-18 19:43:04 -05:00
|
|
|
script:
|
2015-11-23 09:21:38 -05:00
|
|
|
- "bundle exec bundle-audit update"
|
|
|
|
- "bundle exec bundle-audit check"
|
2015-11-23 08:57:41 -05:00
|
|
|
tags:
|
|
|
|
- ruby
|
|
|
|
- mysql
|
2015-12-11 10:16:07 -05:00
|
|
|
allow_failure: true
|
2016-01-27 09:41:05 -05:00
|
|
|
|
|
|
|
# Ruby 2.1 jobs
|
|
|
|
|
2016-02-08 04:36:42 -05:00
|
|
|
spec:feature:ruby21:
|
2016-01-27 09:41:05 -05:00
|
|
|
image: ruby:2.1
|
2016-02-08 04:36:42 -05:00
|
|
|
only:
|
|
|
|
- master
|
2016-01-27 09:41:05 -05:00
|
|
|
script:
|
|
|
|
- RAILS_ENV=test bundle exec rake assets:precompile 2>/dev/null
|
2016-02-08 04:36:42 -05:00
|
|
|
- RAILS_ENV=test SIMPLECOV=true bundle exec rake spec:feature
|
|
|
|
tags:
|
|
|
|
- ruby
|
|
|
|
- mysql
|
|
|
|
|
|
|
|
spec:api:ruby21:
|
|
|
|
image: ruby:2.1
|
|
|
|
only:
|
|
|
|
- master
|
|
|
|
script:
|
|
|
|
- RAILS_ENV=test SIMPLECOV=true bundle exec rake spec:api
|
|
|
|
tags:
|
|
|
|
- ruby
|
|
|
|
- mysql
|
|
|
|
|
|
|
|
spec:models:ruby21:
|
|
|
|
image: ruby:2.1
|
|
|
|
only:
|
|
|
|
- master
|
|
|
|
script:
|
|
|
|
- RAILS_ENV=test SIMPLECOV=true bundle exec rake spec:models
|
2016-01-27 09:41:05 -05:00
|
|
|
tags:
|
|
|
|
- ruby
|
|
|
|
- mysql
|
2016-02-08 04:36:42 -05:00
|
|
|
|
|
|
|
spec:lib:ruby21:
|
|
|
|
image: ruby:2.1
|
2016-01-27 09:41:05 -05:00
|
|
|
only:
|
|
|
|
- master
|
2016-02-08 04:36:42 -05:00
|
|
|
script:
|
|
|
|
- RAILS_ENV=test SIMPLECOV=true bundle exec rake spec:lib
|
|
|
|
tags:
|
|
|
|
- ruby
|
|
|
|
- mysql
|
2016-01-27 09:41:05 -05:00
|
|
|
|
2016-02-08 04:36:42 -05:00
|
|
|
spec:services:ruby21:
|
2016-01-27 09:41:05 -05:00
|
|
|
image: ruby:2.1
|
2016-02-08 04:36:42 -05:00
|
|
|
only:
|
|
|
|
- master
|
2016-01-27 09:41:05 -05:00
|
|
|
script:
|
2016-02-08 04:36:42 -05:00
|
|
|
- RAILS_ENV=test SIMPLECOV=true bundle exec rake spec:services
|
2016-01-27 09:41:05 -05:00
|
|
|
tags:
|
|
|
|
- ruby
|
|
|
|
- mysql
|
2016-02-08 04:36:42 -05:00
|
|
|
|
|
|
|
spec:benchmark:ruby21:
|
|
|
|
image: ruby:2.1
|
2016-01-27 09:41:05 -05:00
|
|
|
only:
|
|
|
|
- master
|
2016-02-08 04:36:42 -05:00
|
|
|
script:
|
|
|
|
- RAILS_ENV=test bundle exec rake spec:benchmark
|
|
|
|
tags:
|
|
|
|
- ruby
|
|
|
|
- mysql
|
|
|
|
allow_failure: true
|
|
|
|
|
|
|
|
spec:other:ruby21:
|
|
|
|
image: ruby:2.1
|
|
|
|
only:
|
|
|
|
- master
|
|
|
|
script:
|
|
|
|
- RAILS_ENV=test SIMPLECOV=true bundle exec rake spec:other
|
|
|
|
tags:
|
|
|
|
- ruby
|
|
|
|
- mysql
|
|
|
|
|
|
|
|
spinach:project:half:ruby21:
|
|
|
|
image: ruby:2.1
|
|
|
|
only:
|
|
|
|
- master
|
|
|
|
script:
|
|
|
|
- RAILS_ENV=test SIMPLECOV=true bundle exec rake spinach:project:half
|
|
|
|
tags:
|
|
|
|
- ruby
|
|
|
|
- mysql
|
|
|
|
|
|
|
|
spinach:project:rest:ruby21:
|
|
|
|
image: ruby:2.1
|
|
|
|
only:
|
|
|
|
- master
|
|
|
|
script:
|
|
|
|
- RAILS_ENV=test SIMPLECOV=true bundle exec rake spinach:project:rest
|
|
|
|
tags:
|
|
|
|
- ruby
|
|
|
|
- mysql
|
|
|
|
|
|
|
|
spinach:other:ruby21:
|
|
|
|
image: ruby:2.1
|
|
|
|
only:
|
|
|
|
- master
|
|
|
|
script:
|
|
|
|
- RAILS_ENV=test SIMPLECOV=true bundle exec rake spinach:other
|
|
|
|
tags:
|
|
|
|
- ruby
|
|
|
|
- mysql
|