1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-06-28 17:03:58 +08:00

Add appveyor conf

License: MIT
Signed-off-by: rht <rhtbot@gmail.com>
This commit is contained in:
rht
2015-11-20 18:55:16 +07:00
committed by dignifiedquire
parent adfe197825
commit b1e642a001

20
appveyor.yml Normal file
View File

@ -0,0 +1,20 @@
version: "{build}"
os: Windows Server 2012 R2
environment:
GOPATH: c:\gopath
TEST_NO_FUSE: 1
TEST_VERBOSE: 1
TEST_SUITE: test_sharness_expensive
install:
- set PATH=%GOPATH%\bin;c:\go\bin;%PATH%
- rmdir c:\go /s /q
- appveyor DownloadFile https://storage.googleapis.com/golang/go1.5.1.windows-amd64.msi
- msiexec /i go1.5.1.windows-amd64.msi /q
- go version
- go env
build_script:
- make install
test_script:
- make $TEST_SUITE
build:
parallel: true