-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
48 lines (40 loc) · 1.45 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
39
40
41
42
43
44
45
46
47
language: ruby
rvm:
- 2.7.1
addons:
postgresql: "10"
apt:
packages:
- postgresql-10
- postgresql-client-10
notifications:
email: false
env:
global:
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true
- CC_TEST_REPORTER_ID=0c6f51e46015cd9a30f217aa5eb0007c8166f91d03b8c150a8539234b3fcf1bd
- PGPORT=5432
before_install:
- nvm install node
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- chmod +x ./cc-test-reporter
- ./cc-test-reporter before-build
- sudo locale-gen --no-archive es_CO.UTF-8
- sudo /etc/init.d/postgresql stop
- sudo /etc/init.d/postgresql start 10
- cd test/dummy
- psql -h 127.0.0.1 -c 'CREATE DATABASE mr519gen_pru;' -U postgres
- gem install bundler
- gem update --system
- bundle update --bundler
- bundle install
- yarn install
- cp config/database.travis.yml config/database.yml
- cp db/structure.sql db/structure.sql.copia
- sed -e 's/provider = libc,//g;s/SET default_table_access_method.*/-- &/g' db/structure.sql.copia > db/structure.sql
- rake db:setup
- rake msip:indices
- cd ../..
script:
- bundle exec rails test -b
- ./cc-test-reporter after-build -t simplecov --exit-code $TRAVIS_TEST_RESULT