Welcome to mirror list, hosted at ThFree Co, Russian Federation.

.travis.yml - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b62d6ce2d8ec6102a2a03f96b6879bd723b311bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
before_install: sudo apt-get install libicu-dev -y
branches:
  only:
    - 'master'
rvm:
  - 1.9.2
before_script:
  - "cp config/database.yml.sqlite config/database.yml"
  - "cp config/gitlab.yml.example config/gitlab.yml"
  - "bundle exec rake db:create RAILS_ENV=test"
  - "bundle exec rake db:migrate RAILS_ENV=test"
  - "bundle exec rake db:seed_fu RAILS_ENV=test"
  - "sh -e /etc/init.d/xvfb start"
script: "bundle exec rake travis"