5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-19 21:32:31 +00:00
matterbridge/.travis.yml

56 lines
2.5 KiB
YAML
Raw Normal View History

2017-07-13 21:54:07 +00:00
language: go
go:
2018-10-12 21:14:36 +00:00
- 1.11.x
2017-07-16 15:15:00 +00:00
# we have everything vendored
2017-07-13 22:28:46 +00:00
install: true
2018-11-10 18:35:38 +00:00
git:
depth: 200
2017-07-16 15:15:00 +00:00
env:
- GOOS=linux GOARCH=amd64
2017-07-16 20:02:46 +00:00
# - GOOS=windows GOARCH=amd64
#- GOOS=linux GOARCH=arm
2017-07-16 15:15:00 +00:00
2017-07-13 22:28:46 +00:00
matrix:
# It's ok if our code fails on unstable development versions of Go.
allow_failures:
- go: tip
# Don't wait for tip tests to finish. Mark the test run green if the
# tests pass on the stable versions of Go.
fast_finish: true
notifications:
email: false
before_script:
2017-07-16 18:57:32 +00:00
- MY_VERSION=$(git describe --tags)
2018-11-08 22:09:58 +00:00
# - GO_FILES=$(find . -iname '*.go' | grep -v /vendor/) # All the .go files, excluding vendor/
2017-07-13 22:28:46 +00:00
- PKGS=$(go list ./... | grep -v /vendor/) # All the import paths, excluding vendor/
# - go get github.com/golang/lint/golint # Linter
2018-11-08 22:09:58 +00:00
#- go get honnef.co/go/tools/cmd/megacheck # Badass static analyzer/linter
2018-11-15 18:24:22 +00:00
- curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | bash -s -- -b $GOPATH/bin v1.12.2
2018-11-08 22:09:58 +00:00
2017-07-13 22:28:46 +00:00
# Anything in before_script: that returns a nonzero exit code will
# flunk the build and immediately stop. It's sorta like having
# set -e enabled in bash.
script:
2018-11-08 22:09:58 +00:00
#- test -z "$(go fmt ./...)" # Fail if a .go file hasn't been formatted with gofmt
2017-07-25 18:11:52 +00:00
- go test -v -race $PKGS # Run all the tests with the race detector enabled
2018-11-08 22:09:58 +00:00
#- go vet $PKGS # go vet is the official Go static analyzer
- golangci-lint run --enable-all -D lll -D errcheck -D gosec -D maligned -D prealloc -D gocyclo -D gochecknoglobals
2018-11-08 22:09:58 +00:00
#- megacheck $PKGS # "go vet on steroids" + linter
2017-07-16 18:57:32 +00:00
- /bin/bash ci/bintray.sh
2017-07-13 22:28:46 +00:00
#- golint -set_exit_status $PKGS # one last linter
2017-07-16 18:57:32 +00:00
2017-07-16 20:06:33 +00:00
deploy:
provider: bintray
edge:
branch: v1.8.47
2017-07-16 20:06:33 +00:00
file: ci/deploy.json
user: 42wim
key:
secure: "CeXXe6JOmt7HYR81MdWLua0ltQHhDdkIeRGBFbgd7hkb1wi8eF9DgpAcQrTso8NIlHNZmSAP46uhFgsRvkuezzX0ygalZ7DCJyAyn3sAMEh+UQSHV1WGThRehTtidqRGjetzsIGSwdrJOWil+XTfbO1Z8DGzfakhSuAZka8CM4BAoe3YeP9rYK8h+84x0GHfczvsLtXZ3mWLvQuwe4pK6+ItBCUg0ae7O7ZUpWHy0xQQkkWztY/6RAzXfaG7DuGjIw+20fhx3WOXRNpHCtZ6Bc3qERCpk0s1HhlQWlrN9wDaFTBWYwlvSnNgvxxMbNXJ6RrRJ0l0bA7FUswYwyroxhzrGLdzWDg8dHaQkypocngdalfhpsnoO9j3ApJhomUFJ3UoEq5nOGRUrKn8MPi+dP0zE4kNQ3e4VNa1ufNrvfpWolMg3xh8OXuhQdD5wIM5zFAbRJLqWSCVAjPq4DDPecmvXBOlIial7oa312lN5qnBnUjvAcxszZ+FUyDHT1Grxzna4tMwxY9obPzZUzm7359AOCCwIQFVB8GLqD2nwIstcXS0zGRz+fhviPipHuBa02q5bGUZwmkvrSNab0s8Jo7pCrel2Rz3nWPKaiCfq2WjbW1CLheSMkOQrjsdUd1hhbqNWFPUjJPInTc77NAKCfm5runv5uyowRLh4NNd0sI="