matterbridge/ci/bintray.sh

27 lines
873 B
Bash
Raw Normal View History

2017-07-16 11:57:32 -07:00
#!/bin/bash
2017-07-16 12:32:41 -07:00
go version |grep go1.8 || exit
2017-07-16 11:57:32 -07:00
VERSION=$(git describe --tags)
2017-07-16 12:05:29 -07:00
mkdir ci/binaries
2017-07-16 12:32:41 -07:00
GOOS=windows GOARCH=amd64 go build -x -ldflags "-s -w -X main.githash=$(git log --pretty=format:'%h' -n 1)" -o ci/binaries/matterbridge-$VERSION-win64.exe
GOOS=linux GOARCH=amd64 go build -x -ldflags "-s -w -X main.githash=$(git log --pretty=format:'%h' -n 1)" -o ci/binaries/matterbridge-$VERSION-linux64
GOOS=linux GOARCH=arm go build -x -ldflags "-s -w -X main.githash=$(git log --pretty=format:'%h' -n 1)" -o ci/binaries/matterbridge-$VERSION-linux-arm
2017-07-16 11:57:32 -07:00
cd ci
cat > deploy.json <<EOF
{
"package": {
"name": "Matterbridge",
"repo": "nightly",
"subject": "42wim"
},
"version": {
2017-07-16 12:32:41 -07:00
"name": "$VERSION"
2017-07-16 11:57:32 -07:00
},
"files":
[
2017-07-16 13:15:06 -07:00
{"includePattern": "ci/binaries/(.*)", "uploadPattern":"\$1"}
2017-07-16 11:57:32 -07:00
],
"publish": true
}
EOF