gitlab-org--gitlab-foss/.gitlab-ci.yml

106 lines
1.8 KiB
YAML
Raw Normal View History

2015-06-15 09:00:13 +00:00
# This file is generated by GitLab CI
before_script:
2015-06-18 08:56:35 +00:00
- ./scripts/prepare_build.sh
2015-06-03 20:05:33 +00:00
- ruby -v
- which ruby
- gem install bundler --no-ri --no-rdoc
2015-06-03 20:05:33 +00:00
- cp config/gitlab.yml.example config/gitlab.yml
- touch log/application.log
- touch log/test.log
- bundle install --without postgres production --jobs $(nproc) "${FLAGS[@]}"
2015-06-03 20:05:33 +00:00
- bundle exec rake db:create RAILS_ENV=test
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:benchmark:
script:
- RAILS_ENV=test bundle exec rake spec:benchmark
tags:
- ruby
- mysql
allow_failure: true
spec:other:
script:
- RAILS_ENV=test SIMPLECOV=true bundle exec rake spec:other
tags:
- ruby
- mysql
2015-12-09 09:50:38 +00:00
spinach:project:half:
2015-06-15 09:00:13 +00:00
script:
2015-12-09 09:50:38 +00:00
- RAILS_ENV=test SIMPLECOV=true bundle exec rake spinach:project:half
tags:
- ruby
- mysql
spinach:project:rest:
script:
- RAILS_ENV=test SIMPLECOV=true bundle exec rake spinach:project:rest
2015-06-15 09:00:13 +00:00
tags:
- ruby
- mysql
spinach:other:
2015-06-15 09:00:13 +00:00
script:
- RAILS_ENV=test SIMPLECOV=true bundle exec rake spinach:other
2015-06-15 09:00:13 +00:00
tags:
- ruby
- mysql
teaspoon:
2015-06-15 09:00:13 +00:00
script:
- RAILS_ENV=test bundle exec teaspoon
2015-06-15 09:00:13 +00:00
tags:
- ruby
- mysql
rubocop:
2015-06-15 09:00:13 +00:00
script:
- bundle exec rubocop
tags:
- ruby
- mysql
brakeman:
2015-06-15 09:00:13 +00:00
script:
- bundle exec rake brakeman
tags:
- ruby
- mysql
flog:
script:
- bundle exec rake flog
tags:
- ruby
- mysql
flay:
script:
- bundle exec rake flay
tags:
- ruby
- mysql
bundler:audit:
script:
- "bundle exec bundle-audit update"
- "bundle exec bundle-audit check"
tags:
- ruby
- mysql
allow_failure: true