mirror of
https://github.com/minio/minio.git
synced 2025-04-07 13:15:39 -04:00
Enable go1.10.1 version (#5666)
This commit is contained in:
parent
2f20d90465
commit
73f7a98590
@ -31,4 +31,4 @@ after_success:
|
|||||||
- bash <(curl -s https://codecov.io/bash)
|
- bash <(curl -s https://codecov.io/bash)
|
||||||
|
|
||||||
go:
|
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>
|
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>
|
MAINTAINER Minio Inc <dev@minio.io>
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
FROM alpine:3.6
|
FROM alpine:3.7
|
||||||
|
|
||||||
MAINTAINER Minio Inc <dev@minio.io>
|
MAINTAINER Minio Inc <dev@minio.io>
|
||||||
|
|
||||||
|
@ -12,7 +12,7 @@ clone_folder: c:\gopath\src\github.com\minio\minio
|
|||||||
# Environment variables
|
# Environment variables
|
||||||
environment:
|
environment:
|
||||||
GOPATH: c:\gopath
|
GOPATH: c:\gopath
|
||||||
GOROOT: c:\go19
|
GOROOT: c:\go
|
||||||
|
|
||||||
# scripts that run after cloning repository
|
# scripts that run after cloning repository
|
||||||
install:
|
install:
|
||||||
|
@ -21,7 +21,7 @@ _init() {
|
|||||||
|
|
||||||
## Minimum required versions for build dependencies
|
## Minimum required versions for build dependencies
|
||||||
GIT_VERSION="1.0"
|
GIT_VERSION="1.0"
|
||||||
GO_VERSION="1.9.4"
|
GO_VERSION="1.10.1"
|
||||||
OSX_VERSION="10.8"
|
OSX_VERSION="10.8"
|
||||||
KNAME=$(uname -s)
|
KNAME=$(uname -s)
|
||||||
ARCH=$(uname -m)
|
ARCH=$(uname -m)
|
||||||
|
@ -139,7 +139,7 @@ func TestGetCompleteMultipartMD5(t *testing.T) {
|
|||||||
expectedErr string
|
expectedErr string
|
||||||
}{
|
}{
|
||||||
// Wrong MD5 hash 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.
|
// Single CompletePart with valid MD5 hash string.
|
||||||
{[]CompletePart{{ETag: "cf1f738a5924e645913c984e0fe3d708"}}, "10dc1617fbcf0bd0858048cb96e6bd77-1", ""},
|
{[]CompletePart{{ETag: "cf1f738a5924e645913c984e0fe3d708"}}, "10dc1617fbcf0bd0858048cb96e6bd77-1", ""},
|
||||||
|
Loading…
x
Reference in New Issue
Block a user