Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit fdb5793

Browse files
committedNov 20, 2015
Add appveyor conf
License: MIT Signed-off-by: rht <rhtbot@gmail.com>
1 parent b9e8c00 commit fdb5793

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
 

‎appveyor.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
version: "{build}"
2+
os: Windows Server 2012 R2
3+
environment:
4+
GOPATH: c:\gopath
5+
TEST_NO_FUSE: 1
6+
TEST_VERBOSE: 1
7+
TEST_SUITE: test_sharness_expensive
8+
install:
9+
- set PATH=%GOPATH%\bin;c:\go\bin;%PATH%
10+
- rmdir c:\go /s /q
11+
- appveyor DownloadFile https://storage.googleapis.com/golang/go1.5.1.windows-amd64.msi
12+
- msiexec /i go1.5.1.windows-amd64.msi /q
13+
- go version
14+
- go env
15+
build_script:
16+
- make install
17+
test_script:
18+
- make $TEST_SUITE
19+
build:
20+
parallel: true

0 commit comments

Comments
 (0)
Please sign in to comment.