mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
e5d28115ee
- all changes here are attributed to difference in behaviour between, namely: - resolution of secondary test dependencies - prunning of non-Go files Signed-off-by: Ilya Dmitrichenko <errordeveloper@gmail.com> Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
24 lines
412 B
YAML
24 lines
412 B
YAML
version: "{build}"
|
|
|
|
platform: x64
|
|
|
|
clone_folder: c:\gopath\src\go.opencensus.io
|
|
|
|
environment:
|
|
GOPATH: 'c:\gopath'
|
|
GO111MODULE: 'on'
|
|
CGO_ENABLED: '0' # See: https://github.com/appveyor/ci/issues/2613
|
|
|
|
stack: go 1.11
|
|
|
|
before_test:
|
|
- go version
|
|
- go env
|
|
|
|
build: false
|
|
deploy: false
|
|
|
|
test_script:
|
|
- cd %APPVEYOR_BUILD_FOLDER%
|
|
- go build -v .\...
|
|
- go test -v .\... # No -race because cgo is disabled
|