Платформа ЦРНП "Мирокод" для разработки проектов
https://git.mirocod.ru
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
579 B
32 lines
579 B
# version format |
|
version: "{build}" |
|
|
|
# Operating system (build VM template) |
|
os: Windows Server 2012 R2 |
|
|
|
# Platform. |
|
platform: x64 |
|
|
|
clone_folder: c:\gopath\src\github.com\minio\sha256-simd |
|
|
|
# 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 . |
|
- go test -race . |
|
|
|
# to disable automatic tests |
|
test: off |
|
|
|
# to disable deployment |
|
deploy: off
|
|
|