mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-09 23:40:27 +00:00
Bump Go version in Travis CI (#518)
This commit is contained in:
parent
917040b044
commit
97b1fc813b
@ -1,8 +1,6 @@
|
|||||||
language: go
|
language: go
|
||||||
go:
|
go:
|
||||||
#- 1.7.x
|
- 1.11.x
|
||||||
- 1.10.x
|
|
||||||
# - tip
|
|
||||||
|
|
||||||
# we have everything vendored
|
# we have everything vendored
|
||||||
install: true
|
install: true
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
go version |grep go1.10 || exit
|
go version | grep go1.11 || exit
|
||||||
VERSION=$(git describe --tags)
|
VERSION=$(git describe --tags)
|
||||||
mkdir ci/binaries
|
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=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
|
||||||
|
@ -843,7 +843,7 @@ func (m *MMClient) StatusLoop() {
|
|||||||
if m.OnWsConnect != nil {
|
if m.OnWsConnect != nil {
|
||||||
m.OnWsConnect()
|
m.OnWsConnect()
|
||||||
}
|
}
|
||||||
m.log.Debug("StatusLoop:", m.OnWsConnect)
|
m.log.Debugf("StatusLoop: %p", m.OnWsConnect)
|
||||||
for {
|
for {
|
||||||
if m.WsQuit {
|
if m.WsQuit {
|
||||||
return
|
return
|
||||||
|
Loading…
Reference in New Issue
Block a user