diff options
author | Wim <wim@42.be> | 2020-06-24 23:45:45 +0200 |
---|---|---|
committer | Wim <wim@42.be> | 2020-06-24 23:45:45 +0200 |
commit | bce736993efdc2501df26a2a773b4999c5580437 (patch) | |
tree | 74c9560603be8c3c2faa4241e87bcd17f490e82e /ci/bintray.sh | |
parent | 56369924460e14f61c389269801247781adf8e84 (diff) | |
download | matterbridge-msglm-bce736993efdc2501df26a2a773b4999c5580437.tar.gz matterbridge-msglm-bce736993efdc2501df26a2a773b4999c5580437.tar.bz2 matterbridge-msglm-bce736993efdc2501df26a2a773b4999c5580437.zip |
Remove travis as it isn't working anymore
Diffstat (limited to 'ci/bintray.sh')
-rwxr-xr-x | ci/bintray.sh | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/ci/bintray.sh b/ci/bintray.sh deleted file mode 100755 index 3a711117..00000000 --- a/ci/bintray.sh +++ /dev/null @@ -1,30 +0,0 @@ -#!/usr/bin/env bash -set -u -e -x -o pipefail - -go version | grep go1.14 || 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 - |