summaryrefslogblamecommitdiffstats
path: root/ci/bintray.sh
blob: e5cbcdb737d8ed5f0f76f095bea856112c582635 (plain) (tree)
1
2
3
4
5
6
7
8
           
                              
                              
                 

                                                                                                                                                       
     






                               
                          

            
                                                                     



                   
#!/bin/bash
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=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
{
    "package": {
        "name": "Matterbridge",
        "repo": "nightly",
        "subject": "42wim"
    },
    "version": {
        "name": "$VERSION"
    },
    "files":
        [
        {"includePattern": "ci/binaries/(.*)", "uploadPattern":"\$1"}
        ],
    "publish": true
}
EOF