.gitlab-ci.yml 1.3 KB
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
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26

spec:feature:
  script:
    - 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

27 28 29 30 31 32
spec:benchmark:
  script:
    - RAILS_ENV=test bundle exec rake spec:benchmark
  tags:
    - ruby
    - mysql
33
  allow_failure: true
34

35 36 37 38 39 40 41 42
spec:other:
  script:
    - RAILS_ENV=test SIMPLECOV=true bundle exec rake spec:other
  tags:
    - ruby
    - mysql

spinach:project:
V
Valery Sizov 已提交
43
  script:
44
    - RAILS_ENV=test SIMPLECOV=true bundle exec rake spinach:project
V
Valery Sizov 已提交
45 46 47 48
  tags:
    - ruby
    - mysql

49
spinach:other:
V
Valery Sizov 已提交
50
  script:
51
    - RAILS_ENV=test SIMPLECOV=true bundle exec rake spinach:other
V
Valery Sizov 已提交
52 53 54 55
  tags:
    - ruby
    - mysql

56
teaspoon:
V
Valery Sizov 已提交
57
  script:
58
    - RAILS_ENV=test bundle exec teaspoon
V
Valery Sizov 已提交
59 60 61 62
  tags:
    - ruby
    - mysql

63
rubocop:
V
Valery Sizov 已提交
64 65 66 67 68 69
  script:
    - bundle exec rubocop
  tags:
    - ruby
    - mysql

70
brakeman:
V
Valery Sizov 已提交
71 72 73 74
  script:
    - bundle exec rake brakeman
  tags:
    - ruby
75
    - mysql