.gitlab-ci.yml 1.9 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

D
Douwe Maan 已提交
27 28 29 30 31 32 33
spec:models:
  script:
    - RAILS_ENV=test SIMPLECOV=true bundle exec rake spec:models
  tags:
    - ruby
    - mysql

34 35 36 37 38 39
spec:benchmark:
  script:
    - RAILS_ENV=test bundle exec rake spec:benchmark
  tags:
    - ruby
    - mysql
40
  allow_failure: true
41

42 43 44 45 46 47 48
spec:other:
  script:
    - RAILS_ENV=test SIMPLECOV=true bundle exec rake spec:other
  tags:
    - ruby
    - mysql

D
Douwe Maan 已提交
49
spinach:project:half:
V
Valery Sizov 已提交
50
  script:
D
Douwe Maan 已提交
51 52 53 54 55 56 57 58
    - RAILS_ENV=test SIMPLECOV=true bundle exec rake spinach:project:half
  tags:
    - ruby
    - mysql

spinach:project:rest:
  script:
    - RAILS_ENV=test SIMPLECOV=true bundle exec rake spinach:project:rest
V
Valery Sizov 已提交
59 60 61 62
  tags:
    - ruby
    - mysql

63
spinach:other:
V
Valery Sizov 已提交
64
  script:
65
    - RAILS_ENV=test SIMPLECOV=true bundle exec rake spinach:other
V
Valery Sizov 已提交
66 67 68 69
  tags:
    - ruby
    - mysql

70
teaspoon:
V
Valery Sizov 已提交
71
  script:
72
    - RAILS_ENV=test bundle exec teaspoon
V
Valery Sizov 已提交
73 74 75 76
  tags:
    - ruby
    - mysql

77
rubocop:
V
Valery Sizov 已提交
78 79 80 81 82 83
  script:
    - bundle exec rubocop
  tags:
    - ruby
    - mysql

84
brakeman:
V
Valery Sizov 已提交
85 86 87 88
  script:
    - bundle exec rake brakeman
  tags:
    - ruby
89
    - mysql
90 91 92 93 94 95 96

flog:
  script:
    - bundle exec rake flog
  tags:
    - ruby
    - mysql
97 98 99 100 101 102 103

flay:
  script:
    - bundle exec rake flay
  tags:
    - ruby
    - mysql
D
Dmitriy Zaporozhets 已提交
104

D
Dmitriy Zaporozhets 已提交
105
bundler:audit:
D
Douwe Maan 已提交
106
  script:
D
Dmitriy Zaporozhets 已提交
107 108
    - "bundle exec bundle-audit update"
    - "bundle exec bundle-audit check"
D
Dmitriy Zaporozhets 已提交
109 110 111
  tags:
    - ruby
    - mysql
D
Dmitriy Zaporozhets 已提交
112
  allow_failure: true