File tree 6 files changed +6
-59
lines changed
6 files changed +6
-59
lines changed Original file line number Diff line number Diff line change 1
1
language : go
2
2
go :
3
- - 1.11.x
3
+ # test with the two most recent Go versions
4
4
- 1.12.x
5
5
- 1.13.x
6
6
env :
7
- - NSQ_DOWNLOAD=nsq-0.3.8.linux-amd64.go1.6.2 GOARCH=amd64
8
- - NSQ_DOWNLOAD=nsq-0.3.8.linux-amd64.go1.6.2 GOARCH=386
9
7
- NSQ_DOWNLOAD=nsq-1.0.0-compat.linux-amd64.go1.8 GOARCH=amd64
10
- - NSQ_DOWNLOAD=nsq-1.0.0-compat.linux-amd64.go1.8 GOARCH=386
11
8
- NSQ_DOWNLOAD=nsq-1.1.0.linux-amd64.go1.10.3 GOARCH=amd64
12
- - NSQ_DOWNLOAD=nsq-1.1.0.linux-amd64.go1.10.3 GOARCH=386
9
+ - NSQ_DOWNLOAD=nsq-1.2.0.linux-amd64.go1.12.9 GOARCH=amd64
10
+ # test most recent nsq version on GOARCH=386
11
+ - NSQ_DOWNLOAD=nsq-1.2.0.linux-amd64.go1.12.9 GOARCH=386
13
12
script :
14
13
- ./travis.sh
15
14
notifications :
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
- github.com/golang/snappy v0.0.0-20160529050041-d9eb7a3d35ec h1:ZaSUjYC8aWT/om43c8YVz0SqjT8ABtqw7REbZGsCroE =
2
- github.com/golang/snappy v0.0.0-20160529050041-d9eb7a3d35ec /go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q =
3
1
github.com/golang/snappy v0.0.1 h1:Qgr9rKW7uDUkrbSmQeiDsGa8SjGyCOGtuasMWwvp2P4 =
4
2
github.com/golang/snappy v0.0.1 /go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q =
Original file line number Diff line number Diff line change @@ -6,13 +6,5 @@ wget http://bitly-downloads.s3.amazonaws.com/nsq/$NSQ_DOWNLOAD.tar.gz
6
6
tar zxvf $NSQ_DOWNLOAD .tar.gz
7
7
export PATH=$NSQ_DOWNLOAD /bin:$PATH
8
8
9
- go_minor_version=$( go version | awk ' {print $3}' | awk -F. ' {print $2}' )
10
- if [[ $go_minor_version -gt 10 ]]; then
11
- export GO111MODULE=on
12
- else
13
- wget -O dep https://github.com/golang/dep/releases/download/v0.5.0/dep-linux-amd64
14
- chmod +x dep
15
- ./dep ensure
16
- fi
17
-
9
+ export GO111MODULE=on
18
10
./test.sh
Original file line number Diff line number Diff line change 1
1
package nsq
2
2
3
3
// VERSION
4
- const VERSION = "1.0.7 "
4
+ const VERSION = "1.0.8 "
You can’t perform that action at this time.
0 commit comments