forked from statping/statping
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
64 lines (49 loc) · 1.1 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
os:
- linux
language: go
go:
- "1.10.x"
go_import_path: github.com/hunterlong/statup
cache:
directories:
- $GOPATH/pkg/dep
- ~/.npm
- ~/.cache
sudo: required
services:
- docker
- postgresql
- mysql
- mongodb
env:
global:
- DB_HOST=localhost
- DB_USER=travis
- DB_PASS=
- DB_DATABASE=test
- GO_ENV=test
- STATUP_DIR=$GOPATH/src/github.com/hunterlong/statup
matrix:
allow_failures:
- go: master
fast_finish: true
notifications:
email: true
branches:
except:
- /^v\d/
before_install:
- curl -L -s https://github.com/golang/dep/releases/download/v0.5.0/dep-linux-amd64 -o $GOPATH/bin/dep
- chmod +x $GOPATH/bin/dep
- gem install sass
install:
- make dev-deps
- make install
before_script:
- mysql -e 'CREATE DATABASE IF NOT EXISTS test;'
- psql -c 'create database test;' -U postgres
script:
- make test-all
- if [[ "$TRAVIS_BRANCH" == "master" && "$TRAVIS_PULL_REQUEST" = "false" ]]; then make coverage; fi
after_success:
- if [[ "$TRAVIS_BRANCH" == "master" && "$TRAVIS_PULL_REQUEST" = "false" ]]; then make travis-build; fi