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

46 lines
877 B
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
2015-06-15 09:00:13 +00:00
Rspec:
script:
- RAILS_ENV=test SIMPLECOV=true bundle exec rake spec
tags:
- ruby
- mysql
Spinach:
script:
- RAILS_ENV=test SIMPLECOV=true bundle exec rake spinach
tags:
- ruby
- mysql
Jasmine:
script:
- RAILS_ENV=test SIMPLECOV=true bundle exec rake jasmine:ci
tags:
- ruby
- mysql
Rubocop:
script:
- bundle exec rubocop
tags:
- ruby
- mysql
Brakeman:
script:
- bundle exec rake brakeman
tags:
- ruby
- mysql