1
0
mirror of https://github.com/fumiama/blake2b-simd.git synced 2026-06-13 15:01:03 +08:00

build: Enable windows builds. (#23)

This commit is contained in:
Harshavardhana
2016-07-22 23:10:19 -07:00
committed by Frank
parent c50cace0dc
commit 3f5f724cb5

32
appveyor.yml Normal file
View File

@@ -0,0 +1,32 @@
# 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\blake2b-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