forked from fairmondo/fairmondo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
25 lines (25 loc) · 891 Bytes
/
.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
language: ruby
sudo: false
env:
- DB=sqlite
bundler_args: --without development debug
script:
- RAILS_ENV=test bundle exec rake --trace db:migrate
- RAILS_ENV=test bundle exec rake test:all
services:
- redis-server
notifications:
email:
before_install:
- curl -k -L -o elasticsearch-1.3.4.tar.gz https://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-1.3.4.tar.gz
- tar -zxvf elasticsearch-1.3.4.tar.gz
- ./elasticsearch-1.3.4/bin/plugin -install bundle -url http://xbib.org/repository/org/xbib/elasticsearch/plugin/elasticsearch-plugin-bundle/1.4.0.6/elasticsearch-plugin-bundle-1.4.0.6-plugin.zip
- ./elasticsearch-1.3.4/bin/elasticsearch 1> /dev/null 2> /dev/null &
- cp config/secrets.yml.example config/secrets.yml
addons:
apt:
packages:
- libssl1.0.0
- openssl
- ca-certificates