summaryrefslogtreecommitdiffhomepage
path: root/appveyor.yml
diff options
context:
space:
mode:
authorMatthew Holt <[email protected]>2016-02-19 18:07:48 -0700
committerMatthew Holt <[email protected]>2016-02-19 18:07:48 -0700
commit09b7ce6c93305adca6da4d3962129798c4e1af5b (patch)
tree0bec0835cdd5ffd5e6da7587c4f4d3736b8f0538 /appveyor.yml
parentb860be01bb18569ba4f2198aa2be038a016e439e (diff)
downloadcaddy-09b7ce6c93305adca6da4d3962129798c4e1af5b.tar.gz
caddy-09b7ce6c93305adca6da4d3962129798c4e1af5b.zip
Try to get Go 1.6 on appveyor
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml14
1 files changed, 10 insertions, 4 deletions
diff --git a/appveyor.yml b/appveyor.yml
index a486bc24d..b370a1135 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -9,12 +9,18 @@ environment:
CGO_ENABLED: 0
install:
- - go get golang.org/x/tools/cmd/vet
- - echo %GOPATH%
+ - rmdir c:\go /s /q
+ - appveyor DownloadFile https://storage.googleapis.com/golang/go1.6.windows-amd64.zip
+ - 7z x go1.6.windows-amd64.zip -y -oC:\ > NUL
- go version
- go env
+ - go get golang.org/x/tools/cmd/vet
- go get -t ./...
-build_script:
+build: off
+
+test_script:
- go vet ./...
- - go test ./... \ No newline at end of file
+ - go test ./...
+
+deploy: off