forked from jshiffer/matterbridge
Try travis bintray integration
This commit is contained in:
parent
778abea2d9
commit
320be5bffa
@ -24,6 +24,7 @@ notifications:
|
|||||||
email: false
|
email: false
|
||||||
|
|
||||||
before_script:
|
before_script:
|
||||||
|
- MY_VERSION=$(git describe --tags)
|
||||||
- GO_FILES=$(find . -iname '*.go' | grep -v /vendor/) # All the .go files, excluding vendor/
|
- GO_FILES=$(find . -iname '*.go' | grep -v /vendor/) # All the .go files, excluding vendor/
|
||||||
- PKGS=$(go list ./... | grep -v /vendor/) # All the import paths, excluding vendor/
|
- PKGS=$(go list ./... | grep -v /vendor/) # All the import paths, excluding vendor/
|
||||||
# - go get github.com/golang/lint/golint # Linter
|
# - go get github.com/golang/lint/golint # Linter
|
||||||
@ -37,4 +38,12 @@ script:
|
|||||||
#- go test -v -race $PKGS # Run all the tests with the race detector enabled
|
#- go test -v -race $PKGS # Run all the tests with the race detector enabled
|
||||||
- go vet $PKGS # go vet is the official Go static analyzer
|
- go vet $PKGS # go vet is the official Go static analyzer
|
||||||
- megacheck $PKGS # "go vet on steroids" + linter
|
- megacheck $PKGS # "go vet on steroids" + linter
|
||||||
|
- /bin/bash ci/bintray.sh
|
||||||
#- golint -set_exit_status $PKGS # one last linter
|
#- golint -set_exit_status $PKGS # one last linter
|
||||||
|
|
||||||
|
deploy:
|
||||||
|
provider: bintray
|
||||||
|
file: binaries/deploy.json
|
||||||
|
user: 42wim
|
||||||
|
key:
|
||||||
|
secure: "CeXXe6JOmt7HYR81MdWLua0ltQHhDdkIeRGBFbgd7hkb1wi8eF9DgpAcQrTso8NIlHNZmSAP46uhFgsRvkuezzX0ygalZ7DCJyAyn3sAMEh+UQSHV1WGThRehTtidqRGjetzsIGSwdrJOWil+XTfbO1Z8DGzfakhSuAZka8CM4BAoe3YeP9rYK8h+84x0GHfczvsLtXZ3mWLvQuwe4pK6+ItBCUg0ae7O7ZUpWHy0xQQkkWztY/6RAzXfaG7DuGjIw+20fhx3WOXRNpHCtZ6Bc3qERCpk0s1HhlQWlrN9wDaFTBWYwlvSnNgvxxMbNXJ6RrRJ0l0bA7FUswYwyroxhzrGLdzWDg8dHaQkypocngdalfhpsnoO9j3ApJhomUFJ3UoEq5nOGRUrKn8MPi+dP0zE4kNQ3e4VNa1ufNrvfpWolMg3xh8OXuhQdD5wIM5zFAbRJLqWSCVAjPq4DDPecmvXBOlIial7oa312lN5qnBnUjvAcxszZ+FUyDHT1Grxzna4tMwxY9obPzZUzm7359AOCCwIQFVB8GLqD2nwIstcXS0zGRz+fhviPipHuBa02q5bGUZwmkvrSNab0s8Jo7pCrel2Rz3nWPKaiCfq2WjbW1CLheSMkOQrjsdUd1hhbqNWFPUjJPInTc77NAKCfm5runv5uyowRLh4NNd0sI="
|
||||||
|
24
ci/bintray.sh
Executable file
24
ci/bintray.sh
Executable file
@ -0,0 +1,24 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
VERSION=$(git describe --tags)
|
||||||
|
cd ci
|
||||||
|
mkdir binaries
|
||||||
|
go build -x -ldflags "-s -w -X main.githash=$(git log --pretty=format:'%h' -n 1) -o binaries/matterbridge-$VERSION-$GOOS-$GOARCH
|
||||||
|
|
||||||
|
cat > deploy.json <<EOF
|
||||||
|
{
|
||||||
|
"package": {
|
||||||
|
"name": "Matterbridge",
|
||||||
|
"repo": "nightly",
|
||||||
|
"subject": "42wim"
|
||||||
|
},
|
||||||
|
"version": {
|
||||||
|
"name": "$VERSION-$GOOS-$GOARCH"
|
||||||
|
},
|
||||||
|
"files":
|
||||||
|
[
|
||||||
|
{"includePattern": "binaries/(*)", "uploadPattern":"\$1"}
|
||||||
|
],
|
||||||
|
"publish": true
|
||||||
|
}
|
||||||
|
EOF
|
||||||
|
|
Loading…
Reference in New Issue
Block a user