mirror of
https://github.com/kubernetes-sigs/descheduler.git
synced 2026-01-26 13:29:11 +01:00
27 lines
566 B
YAML
27 lines
566 B
YAML
# This file configures AppVeyor (http://www.appveyor.com),
|
|
# a Windows-based CI service similar to Travis.
|
|
|
|
# Identifier for this run
|
|
version: "{build}"
|
|
|
|
# Clone the repo into this path, which conforms to the standard
|
|
# Go workspace structure.
|
|
clone_folder: c:\gopath\src\cloud.google.com\go
|
|
|
|
environment:
|
|
GOPATH: c:\gopath
|
|
|
|
install:
|
|
# Info for debugging.
|
|
- echo %PATH%
|
|
- go version
|
|
- go env
|
|
- go get -v -d -t ./...
|
|
|
|
# Provide a build script, or AppVeyor will call msbuild.
|
|
build_script:
|
|
- go install -v ./...
|
|
|
|
test_script:
|
|
- go test -short -v ./...
|