Enable go1.10.1 version (#5666)

This commit is contained in:
Harshavardhana 2018-04-06 11:07:39 -07:00 committed by Dee Koder
parent 2f20d90465
commit 73f7a98590
7 changed files with 7 additions and 7 deletions

View file

@ -31,4 +31,4 @@ after_success:
- bash <(curl -s https://codecov.io/bash)
go:
- 1.9.4
- '1.10.1'

View file

@ -1,4 +1,4 @@
FROM golang:1.9.4-alpine3.6
FROM golang:1.10.1-alpine3.7
MAINTAINER Minio Inc <dev@minio.io>

View file

@ -1,4 +1,4 @@
FROM golang:1.9.4-alpine3.6
FROM golang:1.10.1-alpine3.7
MAINTAINER Minio Inc <dev@minio.io>

View file

@ -1,4 +1,4 @@
FROM alpine:3.6
FROM alpine:3.7
MAINTAINER Minio Inc <dev@minio.io>

View file

@ -12,7 +12,7 @@ clone_folder: c:\gopath\src\github.com\minio\minio
# Environment variables
environment:
GOPATH: c:\gopath
GOROOT: c:\go19
GOROOT: c:\go
# scripts that run after cloning repository
install:

View file

@ -21,7 +21,7 @@ _init() {
## Minimum required versions for build dependencies
GIT_VERSION="1.0"
GO_VERSION="1.9.4"
GO_VERSION="1.10.1"
OSX_VERSION="10.8"
KNAME=$(uname -s)
ARCH=$(uname -m)

View file

@ -139,7 +139,7 @@ func TestGetCompleteMultipartMD5(t *testing.T) {
expectedErr string
}{
// Wrong MD5 hash string
{[]CompletePart{{ETag: "wrong-md5-hash-string"}}, "", "encoding/hex: odd length hex string"},
{[]CompletePart{{ETag: "wrong-md5-hash-string"}}, "", "encoding/hex: invalid byte: U+0077 'w'"},
// Single CompletePart with valid MD5 hash string.
{[]CompletePart{{ETag: "cf1f738a5924e645913c984e0fe3d708"}}, "10dc1617fbcf0bd0858048cb96e6bd77-1", ""},