0
0
Fork 0
mirror of https://github.com/matrix-org/dendrite synced 2024-07-04 12:08:40 +02:00
dendrite/.travis.yml

33 lines
627 B
YAML
Raw Normal View History

2017-02-10 11:54:07 +01:00
language: go
go:
2017-05-18 12:38:09 +02:00
- 1.8
sudo: false
# Use trusty for postgres 9.5 support
dist: trusty
addons:
postgresql: "9.5"
services:
- postgresql
2017-02-10 11:54:07 +01:00
install:
- go get github.com/constabulary/gb/...
- go get github.com/golang/lint/golint
- go get github.com/fzipp/gocyclo
- ./travis-install-kafka.sh
2017-02-10 11:54:07 +01:00
2017-02-20 18:13:59 +01:00
script:
- ./travis-test.sh
2017-02-10 11:54:07 +01:00
notifications:
webhooks:
urls:
- "https://scalar.vector.im/api/neb/services/hooks/dHJhdmlzLWNpLyU0MGtlZ2FuJTNBbWF0cml4Lm9yZy8lMjFhWmthbkFuV0VkeGNSSVFrV24lM0FtYXRyaXgub3Jn"
on_success: change # always|never|change
on_failure: always
on_start: never