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
|
|
|
|
|
|
|
|
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
|