5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-19 16:59:34 +00:00

Bump Go version in Travis CI (#518)

This commit is contained in:
Duco van Amstel 2018-10-12 22:14:36 +01:00 committed by Wim
parent 917040b044
commit 97b1fc813b
3 changed files with 3 additions and 5 deletions

View File

@ -1,8 +1,6 @@
language: go
go:
#- 1.7.x
- 1.10.x
# - tip
- 1.11.x
# we have everything vendored
install: true

View File

@ -1,5 +1,5 @@
#!/bin/bash
go version |grep go1.10 || exit
go version | grep go1.11 || 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

View File

@ -843,7 +843,7 @@ func (m *MMClient) StatusLoop() {
if m.OnWsConnect != nil {
m.OnWsConnect()
}
m.log.Debug("StatusLoop:", m.OnWsConnect)
m.log.Debugf("StatusLoop: %p", m.OnWsConnect)
for {
if m.WsQuit {
return