forked from hubertlepicki/KarmaTracker
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.travis.yml
38 lines (38 loc) · 1.39 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
language: ruby
rvm:
- jruby-19mode
services:
- elasticsearch
before_install:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- "rvm use jruby-1.7.9 --install --binary --fuzzy --verify-downloads 1"
- "ruby --version"
install: travis_retry jruby -J-Xms2048m -J-Xmx2048m -w -S bundle install
before_script:
- sudo /etc/init.d/postgresql stop
- sudo cp /etc/postgresql/9.1/main/pg_hba.conf ./
- sudo apt-get remove postgresql postgresql-9.1 -qq --purge
- source /etc/lsb-release
- echo "deb http://apt.postgresql.org/pub/repos/apt/ $DISTRIB_CODENAME-pgdg main" > pgdg.list
- sudo mv pgdg.list /etc/apt/sources.list.d/
- wget --quiet -O - http://apt.postgresql.org/pub/repos/apt/ACCC4CF8.asc | sudo apt-key add -
- sudo apt-get update
- sudo apt-get -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confnew" install postgresql-9.2 postgresql-contrib-9.2 -qq
- sudo /etc/init.d/postgresql stop
- sudo cp ./pg_hba.conf /etc/postgresql/9.2/main
- sudo /etc/init.d/postgresql start
- phantomjs --version
- psql --version
- cp config/database.travis.yml config/database.yml
- psql -c 'create database karmatracker_test' -U postgres
- mkdir tmp
script:
- RAILS_ENV=test bundle exec rake db:schema:load --trace
- bundle exec rake flex:import
- bundle exec rake db:test:prepare
- bundle exec rspec spec
- bundle exec brakeman
branches:
only:
- master