diff options
author | Wim <wim@42.be> | 2017-07-16 22:27:53 +0200 |
---|---|---|
committer | Wim <wim@42.be> | 2017-07-16 22:27:53 +0200 |
commit | 61208c0e35a3a04408af96f7821d308a8e92e6b3 (patch) | |
tree | 637d7ce3b4e59f1f66cd73e204bc809423b84ed9 /ci | |
parent | dcffc742550718eeeeafc16bb03d1d130579532e (diff) | |
download | matterbridge-msglm-61208c0e35a3a04408af96f7821d308a8e92e6b3.tar.gz matterbridge-msglm-61208c0e35a3a04408af96f7821d308a8e92e6b3.tar.bz2 matterbridge-msglm-61208c0e35a3a04408af96f7821d308a8e92e6b3.zip |
Update readme
Diffstat (limited to 'ci')
-rwxr-xr-x | ci/bintray.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ci/bintray.sh b/ci/bintray.sh index a7a658fd..e20235c0 100755 --- a/ci/bintray.sh +++ b/ci/bintray.sh @@ -2,9 +2,9 @@ go version |grep go1.8 || exit VERSION=$(git describe --tags) mkdir ci/binaries -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 +GOOS=windows GOARCH=amd64 go build -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 -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 -ldflags "-s -w -X main.githash=$(git log --pretty=format:'%h' -n 1)" -o ci/binaries/matterbridge-$VERSION-linux-arm cd ci cat > deploy.json <<EOF { |