2015-06-29 12:14:41 -04:00
|
|
|
# appveyor.yml reference : http://www.appveyor.com/docs/appveyor-yml
|
|
|
|
|
|
|
|
version: "{build}"
|
|
|
|
|
|
|
|
skip_tags: true
|
|
|
|
|
2015-06-29 14:04:07 -04:00
|
|
|
branches:
|
|
|
|
only:
|
|
|
|
- master
|
|
|
|
|
2015-06-29 12:14:41 -04:00
|
|
|
os: Windows Server 2012 R2
|
|
|
|
|
|
|
|
environment:
|
|
|
|
GOPATH: c:\gopath
|
|
|
|
|
2017-06-05 14:17:47 -04:00
|
|
|
clone_folder: c:\gopath\src\github.com\hashicorp\packer
|
2015-06-29 12:14:41 -04:00
|
|
|
|
|
|
|
install:
|
2019-04-10 09:42:22 -04:00
|
|
|
- set GO111MODULE=off
|
2015-06-29 12:14:41 -04:00
|
|
|
- echo %Path%
|
|
|
|
- go version
|
|
|
|
- go env
|
2016-02-05 17:08:58 -05:00
|
|
|
- go get github.com/mitchellh/gox
|
|
|
|
- go get golang.org/x/tools/cmd/stringer
|
2015-06-29 12:14:41 -04:00
|
|
|
|
|
|
|
build_script:
|
2016-02-05 17:08:58 -05:00
|
|
|
- git rev-parse HEAD
|
2016-04-22 23:42:01 -04:00
|
|
|
# go test $(go list ./... | grep -v vendor)
|
|
|
|
- ps: |
|
Use the hashicorp/go-getter to download files
* removed packer.Cache and references since packer.Cache is never used except in the download step. The download step now uses the new func packer.CachePath(targetPath) for this, the behavior is the same.
* removed download code from packer that was reimplemented into the go-getter library: progress bar, http download restart, checksuming from file, skip already downloaded files, symlinking, make a download cancellable by context.
* on windows if packer is running without symlinking rights and we are getting a local file, the file will be copied instead to avoid errors.
* added unit tests for step_download that are now CI tested on windows, mac & linux.
* files are now downloaded under cache dir `sha1(filename + "?checksum=" + checksum) + file_extension`
* since the output dir is based on the source url and the checksum, when the checksum fails, the file is auto deleted.
* a download file is protected and locked by a file lock,
* updated docs
* updated go modules and vendors
2019-03-13 07:11:58 -04:00
|
|
|
go.exe test -v -timeout=2m (go.exe list ./... `
|
2016-04-22 23:42:01 -04:00
|
|
|
|? { -not $_.Contains('/vendor/') } `
|
2017-04-04 16:39:01 -04:00
|
|
|
|? { $_ -ne 'github.com/hashicorp/packer/builder/parallels/common' } `
|
|
|
|
|? { $_ -ne 'github.com/hashicorp/packer/provisioner/ansible' })
|
2015-06-29 12:14:41 -04:00
|
|
|
|
|
|
|
test: off
|
|
|
|
|
|
|
|
deploy: off
|