diff options
-rw-r--r-- | .travis.yml | 2 | ||||
-rwxr-xr-x | ci/bintray.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index b3b638ef..1be8ebf4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,7 @@ language: go go: #- 1.7.x - - 1.9.x + - 1.10.x # - tip # we have everything vendored diff --git a/ci/bintray.sh b/ci/bintray.sh index c4bf4846..1ca8ba25 100755 --- a/ci/bintray.sh +++ b/ci/bintray.sh @@ -1,5 +1,5 @@ #!/bin/bash -go version |grep go1.9 || exit +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 |