Move to Go 1.6 and set CGO_ENABLED=0 in tests

This commit is contained in:
Matthew Holt 2016-02-17 16:08:25 -07:00
parent 1cfd960f3c
commit f25ae8230f
3 changed files with 8 additions and 5 deletions

View File

@ -1,12 +1,14 @@
language: go
go:
- 1.4.3
- 1.5.3
- 1.6
- tip
env:
- CGO_ENABLED=0
install:
- go get -d ./...
- go get -t ./...
- go get golang.org/x/tools/cmd/vet
script:

View File

@ -96,7 +96,7 @@ You may also be interested in the [developer guide]
## Running from Source
Note: You will need **[Go 1.4](https://golang.org/dl/)** or a later version.
Note: You will need **[Go 1.6](https://golang.org/dl/)** or newer.
1. `$ go get github.com/mholt/caddy`
2. `cd` into your website's directory

View File

@ -6,13 +6,14 @@ clone_folder: c:\gopath\src\github.com\mholt\caddy
environment:
GOPATH: c:\gopath
CGO_ENABLED: 0
install:
- go get golang.org/x/tools/cmd/vet
- echo %GOPATH%
- go version
- go env
- go get -d ./...
- go get -t ./...
build_script:
- go vet ./...