tracker/.travis.yml
Jimmy Zelinskie 3aa7d1a91d cmd: add e2e command
This change unifies chihaya and chihaya-e2e binaries.
It also vendors the code missing from the project that was used in
chihaya-e2e.

Fixes #402.
2018-09-04 11:38:22 -04:00

66 lines
2.1 KiB
YAML

language: go
go:
- 1.11.x
sudo: false
matrix:
include:
# Using vendored dependencies
- install:
- go get -u github.com/golang/dep/...
- go get -u github.com/golang/lint/...
- go get -u golang.org/x/tools/cmd/...
script:
- dep ensure
- go test -v $(go list ./...)
- go vet $(go list ./...)
- diff <(goimports -d $(find . -type f -name '*.go' -not -path "./vendor/*")) <(printf "")
- (for d in $(go list ./...); do diff <(golint $d) <(printf "") || exit 1; done)
- go install github.com/chihaya/chihaya/cmd/chihaya
- chihaya --config=example_config.yaml --debug&
- pid=$!
- sleep 2 # wait for chihaya to start up (gross)
- chihaya e2e --debug
- kill $pid
# Using HEAD of dependencies
- install:
- go get -t ./...
- go get -u github.com/golang/lint/...
- go get -u golang.org/x/tools/cmd/...
script:
- go test -v $(go list ./...)
- go vet $(go list ./...)
- diff <(goimports -d $(find . -type f -name '*.go' -not -path "./vendor/*")) <(printf "")
- (for d in $(go list ./...); do diff <(golint $d) <(printf "") || exit 1; done)
- go install github.com/chihaya/chihaya/cmd/chihaya
- chihaya --config=example_config.yaml --debug&
- pid=$!
- sleep 2 # wait for chihaya to start up (gross)
- chihaya e2e --debug
- kill $pid
allow_failures:
# Using HEAD of dependencies
- install:
- go get -t ./...
- go get -u github.com/golang/lint/...
- go get -u golang.org/x/tools/cmd/...
script:
- go test -v $(go list ./...)
- go vet $(go list ./...)
- diff <(goimports -d $(find . -type f -name '*.go' -not -path "./vendor/*")) <(printf "")
- (for d in $(go list ./...); do diff <(golint $d) <(printf "") || exit 1; done)
- go install github.com/chihaya/chihaya/cmd/chihaya
- chihaya --config=example_config.yaml --debug&
- pid=$!
- sleep 2 # wait for chihaya to start up (gross)
- chihaya e2e --debug
- kill $pid
notifications:
irc:
channels:
- irc.freenode.net#chihaya
use_notice: true
skip_join: true
on_success: always
on_failure: always
email: false