forked from goby-lang/goby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
51 lines (41 loc) · 982 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
language: go
matrix:
include:
- go: 1.10.x
dist: trusty
- go: 1.10.x
dist: xenial
- go: 1.11.x
# trusty builds with 1.11 are [currently broken](https://github.com/golang/go/issues/31293)
dist: xenial
services:
- postgresql
go_import_path: github.com/goby-lang/goby
before_install:
- sudo apt-get install apache2-utils
before_script:
- psql -c 'create database goby_test;' -U postgres
script:
- ./travis.sh
env:
- "GOBY_ROOT=$HOME/gopath/src/github.com/goby-lang/goby"
after_success:
- bash <(curl -s https://codecov.io/bash)
notifications:
slack:
rooms:
- goby-lang:Ler5Uge2Vlx3O8Yt2OFcKg5W#general
on_success: always
on_failure: always
on_start: never
webhooks:
urls:
- https://webhooks.gitter.im/e/149378fb1b44bbaf21f0
on_success: change
on_failure: always
on_start: never
email:
recipients:
on_failure: change
on_success: never