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

51 lines
1.2 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-03 20:05:33 +00:00
- export PATH=$HOME/bin:/usr/local/bin:/usr/bin:/bin
- ruby -v
- which ruby
- gem install bundler
- which bundle
- echo $PATH
- cp config/database.yml.mysql config/database.yml
- cp config/gitlab.yml.example config/gitlab.yml
2015-06-15 09:00:13 +00:00
- 'sed "s/username\:.*$/username\: runner/" -i config/database.yml'
- 'sed "s/password\:.*$/password\: ''password''/" -i config/database.yml'
2015-06-03 20:05:33 +00:00
- sed "s/gitlabhq_test/gitlabhq_test_$((RANDOM/5000))/" -i config/database.yml
- touch log/application.log
- touch log/test.log
- bundle install --without postgres production --jobs $(nproc)
- 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