forked from leogiraldimg/Spottapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
36 lines (30 loc) · 938 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
26
27
28
29
30
31
32
33
34
35
36
language: ruby
rvm:
- 2.6.1
gemfile:
- src/app/Gemfile
env:
global:
CC_TEST_REPORTER_ID=3310f767d6611bd1260e96aa6b5b6625cdcf72c4d942a8541903d77b96733bc6
before_install:
- cd ./src/app
- gem install rails
- gem update --system
- gem install bundler
- bundle install
- psql -c 'create database app_development;' -U postgres
- psql -c 'create database app_test;' -U postgres
- psql -c 'CREATE USER railsuser SUPERUSER INHERIT CREATEDB CREATEROLE' -U postgres
- psql -c "alter user railsuser with password 'Rails@123'" -U postgres
- sudo apt-get install imagemagick
before_script:
- 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
script:
- rails db:migrate
- rake
services:
- postgresql
after_script:
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT