From 0c94186818504d8993b7c10ef758de3b4e5d7df4 Mon Sep 17 00:00:00 2001 From: Wim Date: Sat, 9 Sep 2017 14:42:36 +0200 Subject: [PATCH] Add darwin-amd64 to nightly builds --- ci/bintray.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ci/bintray.sh b/ci/bintray.sh index e5cbcdb7..c4bf4846 100755 --- a/ci/bintray.sh +++ b/ci/bintray.sh @@ -2,9 +2,10 @@ go version |grep go1.9 || 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-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=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 <