From ca2a6cc36bf91e1072751c4d8567829f47f3855b Mon Sep 17 00:00:00 2001 From: Alexandr Razumov Date: Fri, 1 Apr 2016 22:18:58 +0300 Subject: [PATCH 1/2] use klauspost/crc32 instead of hash/crc32 --- go/storage/crc.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go/storage/crc.go b/go/storage/crc.go index b10354d64..21e384854 100644 --- a/go/storage/crc.go +++ b/go/storage/crc.go @@ -2,7 +2,7 @@ package storage import ( "fmt" - "hash/crc32" + "github.com/klauspost/crc32" "github.com/chrislusf/seaweedfs/go/util" ) From a2bb5a34fda6241c242a9d37f7f9d1d0e155b756 Mon Sep 17 00:00:00 2001 From: Alexandr Razumov Date: Fri, 1 Apr 2016 22:23:37 +0300 Subject: [PATCH 2/2] update .travis.yml --- .travis.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 27d6b58bf..059699b8b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,8 @@ sudo: false language: go -go: +go: - 1.5 + - 1.6 - tip before_install: @@ -9,6 +10,6 @@ before_install: install: - go get ./go/... - + script: - go test ./go/...