minio/appveyor.yml

40 lines
872 B
YAML
Raw Normal View History

# version format
version: "{build}"
# Operating system (build VM template)
os: Windows Server 2012 R2
2016-02-11 01:40:09 +01:00
# Platform.
2016-02-11 01:40:09 +01:00
platform: x64
clone_folder: c:\gopath\src\github.com\minio\minio
# environment variables
environment:
GOPATH: c:\gopath
GO15VENDOREXPERIMENT: 1
# scripts that run after cloning repository
install:
- set PATH=%GOPATH%\bin;c:\go\bin;%PATH%
- go version
- go env
# to run your custom scripts instead of automatic MSBuild
build_script:
- go test -race .
- go test -race github.com/minio/minio/pkg...
- go test -coverprofile=coverage.txt -covermode=atomic
- go run buildscripts/gen-ldflags.go > temp.txt
- set /p BUILD_LDFLAGS=<temp.txt
- go build -ldflags="%BUILD_LDFLAGS%" -o %GOPATH%\bin\minio.exe
2016-08-05 01:48:50 +02:00
after_test:
- bash <(curl -s https://codecov.io/bash)
# to disable automatic tests
test: off
# to disable deployment
deploy: off