2
2
mirror of https://github.com/octoleo/restic.git synced 2025-01-30 18:38:49 +00:00

33 lines
579 B
YAML
Raw Normal View History

2017-07-23 14:24:45 +02:00
# version format
version: "{build}"
# Operating system (build VM template)
os: Windows Server 2012 R2
2019-11-22 14:57:56 +01:00
# Platform.
platform: x64
clone_folder: c:\gopath\src\github.com\minio\sha256-simd
2017-07-23 14:24:45 +02:00
# 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:
2019-11-22 14:57:56 +01:00
- go test .
- go test -race .
2017-07-23 14:24:45 +02:00
# to disable automatic tests
test: off
# to disable deployment
deploy: off