2015-06-15 05:00:13 -04:00
|
|
|
# This file is generated by GitLab CI
|
2015-06-04 10:54:32 -04:00
|
|
|
before_script:
|
2015-06-18 04:56:35 -04:00
|
|
|
- ./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[@]}"
|
2015-06-03 16:05:33 -04:00
|
|
|
- bundle exec rake db:create RAILS_ENV=test
|
2015-06-23 10:43:24 -04:00
|
|
|
|
|
|
|
spec:feature:
|
|
|
|
script:
|
|
|
|
- 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-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
|
|
|
|
|
|
|
|
spinach:project:
|
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:project
|
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:
|
2015-11-23 08:57:41 -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-11-23 09:45:16 -05:00
|
|
|
allow_failure: true
|