.gitlab-ci.yml 877 字节
Newer Older
V
Valery Sizov 已提交
1
# This file is generated by GitLab CI
D
Dmitriy Zaporozhets 已提交
2
before_script:
3
  - ./scripts/prepare_build.sh
V
Valery Sizov 已提交
4 5
  - ruby -v
  - which ruby
6
  - gem install bundler --no-ri --no-rdoc
V
Valery Sizov 已提交
7 8 9
  - cp config/gitlab.yml.example config/gitlab.yml
  - touch log/application.log
  - touch log/test.log
10
  - bundle install --without postgres production --jobs $(nproc)  "${FLAGS[@]}"
V
Valery Sizov 已提交
11
  - bundle exec rake db:create RAILS_ENV=test
V
Valery Sizov 已提交
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
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
45
    - mysql