gitlab-org--gitlab-foss/.travis.yml

26 lines
797 B
YAML
Raw Normal View History

2012-05-25 13:38:23 +00:00
env:
- DB=mysql
before_install:
- sudo apt-get install libicu-dev -y
2012-11-16 10:47:09 +00:00
- wget -P /tmp http://phantomjs.googlecode.com/files/phantomjs-1.7.0-linux-i686.tar.bz2
- tar -xf /tmp/phantomjs-1.7.0-linux-i686.tar.bz2 -C /tmp/
2012-11-16 10:54:35 +00:00
- sudo rm -rf /usr/local/phantomjs
- sudo mv /tmp/phantomjs-1.7.0-linux-i686 /usr/local/phantomjs
- gem install charlock_holmes -v="0.6.9"
2011-11-15 13:42:01 +00:00
branches:
only:
- 'master'
rvm:
- 1.9.3
services:
- mysql
2012-10-09 23:41:44 +00:00
- postgresql
2011-11-15 13:42:01 +00:00
before_script:
2012-05-25 13:38:23 +00:00
- "cp config/database.yml.$DB config/database.yml"
2012-02-19 09:49:48 +00:00
- "cp config/gitlab.yml.example config/gitlab.yml"
2011-11-15 13:51:43 +00:00
- "bundle exec rake db:create RAILS_ENV=test"
- "bundle exec rake db:migrate RAILS_ENV=test"
2011-11-15 13:42:01 +00:00
- "bundle exec rake db:seed_fu RAILS_ENV=test"
- "sh -e /etc/init.d/xvfb start"
2012-10-04 10:55:29 +00:00
script: "bundle exec rake travis --trace"