Updated appveyor script to (hopefully) work with a vendored build on Windows

This commit is contained in:
Chris Bednarski 2016-02-05 14:08:58 -08:00
parent ad5416e2e3
commit 6ca15f7e1a
1 changed files with 7 additions and 4 deletions

View File

@ -14,25 +14,28 @@ environment:
GOPATH: c:\gopath
matrix:
- GOARCH: 386
GOVERSION: 1.4.2
GOVERSION: 1.6rc2
- GOARCH: amd64
GOVERSION: 1.4.2
GOVERSION: 1.6rc2
clone_folder: c:\gopath\src\github.com\mitchellh\packer
install:
- set Path=c:\go\bin;%Path%
- set GO15VENDOREXPERIMENT=1
- echo %Path%
- appveyor DownloadFile https://storage.googleapis.com/golang/go%GOVERSION%.windows-%GOARCH%.msi
- msiexec /i go%GOVERSION%.windows-%GOARCH%.msi /q
- go version
- go env
- go get -d -v -t ./...
- go get github.com/mitchellh/gox
- go get golang.org/x/tools/cmd/stringer
- go get golang.org/x/tools/cmd/vet
build_script:
- git rev-parse HEAD
- go test -v ./...
- go vet ./...
- git rev-parse HEAD
test: off