forked from gpc/grails-postgresql-extensions
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
29 lines (23 loc) · 696 Bytes
/
Copy path.travis.yml
File metadata and controls
29 lines (23 loc) · 696 Bytes
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
language: groovy
jdk:
- openjdk7
- oraclejdk8
addons:
postgresql: "9.4"
before_script:
- psql -d template1 -c 'create extension hstore;' -U postgres
- psql -c 'create database pg_extensions_test;' -U postgres
- psql -c "create user pg_extensions with password 'pg_extensions';" -U postgres
- psql -c "grant all privileges on database pg_extensions_test to pg_extensions;" -U postgres
script:
- ./grailsw refresh-dependencies --non-interactive
- ./grailsw test-app -coverage -xml
notifications:
email:
recipients:
- lopez.ivan@gmail.com
- alonso.javier.torres@gmail.com
on_success: change
on_failure: change
after_success:
- ./grailsw coveralls