mirror of
https://github.com/42wim/matterbridge
synced 2024-11-03 15:40:24 +00:00
28 lines
1.0 KiB
Bash
Executable File
28 lines
1.0 KiB
Bash
Executable File
#!/bin/bash
|
|
go version |grep go1.10 || exit
|
|
VERSION=$(git describe --tags)
|
|
mkdir ci/binaries
|
|
GOOS=windows GOARCH=amd64 go build -ldflags "-s -w -X main.githash=$(git log --pretty=format:'%h' -n 1)" -o ci/binaries/matterbridge-$VERSION-windows-amd64.exe
|
|
GOOS=linux GOARCH=amd64 go build -ldflags "-s -w -X main.githash=$(git log --pretty=format:'%h' -n 1)" -o ci/binaries/matterbridge-$VERSION-linux-amd64
|
|
GOOS=linux GOARCH=arm go build -ldflags "-s -w -X main.githash=$(git log --pretty=format:'%h' -n 1)" -o ci/binaries/matterbridge-$VERSION-linux-arm
|
|
GOOS=darwin GOARCH=amd64 go build -ldflags "-s -w -X main.githash=$(git log --pretty=format:'%h' -n 1)" -o ci/binaries/matterbridge-$VERSION-darwin-amd64
|
|
cd ci
|
|
cat > deploy.json <<EOF
|
|
{
|
|
"package": {
|
|
"name": "Matterbridge",
|
|
"repo": "nightly",
|
|
"subject": "42wim"
|
|
},
|
|
"version": {
|
|
"name": "$VERSION"
|
|
},
|
|
"files":
|
|
[
|
|
{"includePattern": "ci/binaries/(.*)", "uploadPattern":"\$1"}
|
|
],
|
|
"publish": true
|
|
}
|
|
EOF
|
|
|