Commit f715bc7b authored by Valery Sizov's avatar Valery Sizov

new syntax of .gitlab-ci.yml

parent 5fa02489
# This file is generated by GitLab CI
before_script: before_script:
- export PATH=$HOME/bin:/usr/local/bin:/usr/bin:/bin - export PATH=$HOME/bin:/usr/local/bin:/usr/bin:/bin
- ruby -v - ruby -v
...@@ -7,33 +8,44 @@ before_script: ...@@ -7,33 +8,44 @@ before_script:
- echo $PATH - echo $PATH
- cp config/database.yml.mysql config/database.yml - cp config/database.yml.mysql config/database.yml
- cp config/gitlab.yml.example config/gitlab.yml - cp config/gitlab.yml.example config/gitlab.yml
- ! 'sed "s/username\:.*$/username\: runner/" -i config/database.yml' - 'sed "s/username\:.*$/username\: runner/" -i config/database.yml'
- ! 'sed "s/password\:.*$/password\: ''password''/" -i config/database.yml' - 'sed "s/password\:.*$/password\: ''password''/" -i config/database.yml'
- sed "s/gitlabhq_test/gitlabhq_test_$((RANDOM/5000))/" -i config/database.yml - sed "s/gitlabhq_test/gitlabhq_test_$((RANDOM/5000))/" -i config/database.yml
- touch log/application.log - touch log/application.log
- touch log/test.log - touch log/test.log
- bundle install --without postgres production --jobs $(nproc) - bundle install --without postgres production --jobs $(nproc)
- bundle exec rake db:create RAILS_ENV=test - bundle exec rake db:create RAILS_ENV=test
jobs: Rspec:
- script: script:
- RAILS_ENV=test SIMPLECOV=true bundle exec rake spec - RAILS_ENV=test SIMPLECOV=true bundle exec rake spec
name: Rspec tags:
runner: ruby,mysql - ruby
- script: - mysql
- RAILS_ENV=test SIMPLECOV=true bundle exec rake spinach
name: Spinach Spinach:
runner: ruby,mysql script:
- script: - RAILS_ENV=test SIMPLECOV=true bundle exec rake spinach
- RAILS_ENV=test SIMPLECOV=true bundle exec rake jasmine:ci tags:
name: Jasmine - ruby
runner: ruby,mysql - mysql
- script:
- bundle exec rubocop Jasmine:
name: Rubocop script:
runner: ruby,mysql - RAILS_ENV=test SIMPLECOV=true bundle exec rake jasmine:ci
- script: tags:
- bundle exec rake brakeman - ruby
name: Brakeman - mysql
runner: ruby,mysql
deploy_jobs: [] Rubocop:
skip_refs: '' script:
- bundle exec rubocop
tags:
- ruby
- mysql
Brakeman:
script:
- bundle exec rake brakeman
tags:
- ruby
- mysql
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment