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

131 lines
2.3 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[@]}"
- RAILS_ENV=test bundle exec rake db:drop db:create db:schema:load db:migrate
2016-01-22 11:53:00 +00:00
variables:
MYSQL_ALLOW_EMPTY_PASSWORD: "1"
spec:feature:
script:
- RAILS_ENV=test bundle exec rake assets:precompile 2>/dev/null
- 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 09:51:01 +00:00
spec:models:
script:
- RAILS_ENV=test SIMPLECOV=true bundle exec rake spec:models
tags:
- ruby
- mysql
2015-12-09 10:56:23 +00: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
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:
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: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