
Ran commands: hack/pin-dependency.sh github.com/GoogleCloudPlatform/k8s-cloud-provider 27a4ced34534a6c32b63159b100ac0efaa1d37b3 hack/update-vendor.sh hack/pin-dependency.sh google.golang.org/api 5213b809086156e6e2b262a41394993fcff97439 hack/update-vendor.sh hack/verify-vendor.sh merge conflicts
26 lines
545 B
YAML
26 lines
545 B
YAML
version: "{build}"
|
|
|
|
platform: x64
|
|
|
|
clone_folder: c:\gopath\src\go.opencensus.io
|
|
|
|
environment:
|
|
GOPATH: 'c:\gopath'
|
|
GOVERSION: '1.11'
|
|
GO111MODULE: 'on'
|
|
CGO_ENABLED: '0' # See: https://github.com/appveyor/ci/issues/2613
|
|
|
|
install:
|
|
- set PATH=%GOPATH%\bin;c:\go\bin;%PATH%
|
|
- choco upgrade golang --version 1.11.5 # Temporary fix because of a go.sum bug in 1.11
|
|
- 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
|