Maintenance updates. (#86)

* Add gcc go build tags.
* Update Travis.
* Fix typo
master
Klaus Post 2018-11-12 13:25:55 +01:00 committed by GitHub
parent 925cb01d65
commit 454fd91890
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 10 additions and 8 deletions

View File

@ -7,9 +7,9 @@ os:
- osx
go:
- 1.7.x
- 1.8.x
- 1.9.x
- 1.10.x
- 1.11.x
- master
install:

View File

@ -11,7 +11,7 @@
// go build simple-decoder.go
//
// Simple Encoder/Decoder Shortcomings:
// * If the file size of the input isn't diviable by the number of data shards
// * If the file size of the input isn't divisible by the number of data shards
// the output will contain extra zeroes
//
// * If the shard numbers isn't the same for the decoder as in the

View File

@ -12,7 +12,7 @@
// go build simple-decoder.go
//
// Simple Encoder/Decoder Shortcomings:
// * If the file size of the input isn't diviable by the number of data shards
// * If the file size of the input isn't divisible by the number of data shards
// the output will contain extra zeroes
//
// * If the shard numbers isn't the same for the decoder as in the

View File

@ -1,5 +1,6 @@
//+build !noasm
//+build !appengine
//+build !gccgo
// Copyright 2015, Klaus Post, see LICENSE for details.

View File

@ -1,4 +1,4 @@
//+build !noasm !appengine
//+build !noasm !appengine !gccgo
// Copyright 2015, Klaus Post, see LICENSE for details.

View File

@ -1,5 +1,6 @@
//+build !noasm
//+build !appengine
//+build !gccgo
// Copyright 2015, Klaus Post, see LICENSE for details.
// Copyright 2017, Minio, Inc.

View File

@ -1,4 +1,4 @@
//+build !noasm !appengine
//+build !noasm !appengine !gccgo
// Copyright 2015, Klaus Post, see LICENSE for details.
// Copyright 2017, Minio, Inc.

View File

@ -1,5 +1,5 @@
//+build !amd64 noasm appengine
//+build !arm64 noasm appengine
//+build !amd64 noasm appengine gccgo
//+build !arm64 noasm appengine gccgo
// Copyright 2015, Klaus Post, see LICENSE for details.