summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: a54aaa269827e1c43fbd8a19f7d1628a60f47060 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# This file is generated by GitLab CI
before_script:
  - ./scripts/prepare_build.sh
  - ruby -v
  - which ruby
  - gem install bundler --no-ri --no-rdoc
  - cp config/gitlab.yml.example config/gitlab.yml
  - touch log/application.log
  - touch log/test.log
  - bundle install --without postgres production --jobs $(nproc)  "${FLAGS[@]}"
  - bundle exec rake db:create RAILS_ENV=test

wtf:
  script:
    - RAILS_ENV=test SIMPLECOV=true bundle exec rake spec:feature
  tags:
    - ruby
    - mysql