Enable go1.10.1 version (#5666)

master
Harshavardhana 7 years ago committed by Dee Koder
parent 2f20d90465
commit 73f7a98590
  1. 2
      .travis.yml
  2. 2
      Dockerfile
  3. 2
      Dockerfile.dev
  4. 2
      Dockerfile.release
  5. 2
      appveyor.yml
  6. 2
      buildscripts/checkdeps.sh
  7. 2
      cmd/object-api-utils_test.go

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

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

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

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

@ -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:

@ -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)

@ -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", ""},

Loading…
Cancel
Save