diff --git a/.travis.yml b/.travis.yml index 92bbffe5..6a2da63d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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: diff --git a/README.md b/README.md index 6aa9510a..05723869 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/appveyor.yml b/appveyor.yml index eddfcaa7..a486bc24 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -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 ./...