File tree Expand file tree Collapse file tree 2 files changed +36
-0
lines changed Expand file tree Collapse file tree 2 files changed +36
-0
lines changed Original file line number Diff line number Diff line change 1+ version : " {build}"
2+
3+ # Source Config
4+
5+ clone_folder : c:\gopath\src\github.com\netlify\open-api
6+
7+ # Build host
8+
9+ environment :
10+ GOPATH : c:\gopath
11+ DEPTESTBYPASS501 : 1
12+ GOVERSION : 1.10
13+
14+ init :
15+ - git config --global core.autocrlf input
16+
17+ # Build
18+
19+ install :
20+ # Install the specific Go version.
21+ - rmdir c:\go /s /q
22+ - appveyor DownloadFile https://storage.googleapis.com/golang/go%GOVERSION%.windows-amd64.msi
23+ - msiexec /i go%GOVERSION%.windows-amd64.msi /q
24+ - set Path=c:\go\bin;c:\gopath\bin;C:\Program Files (x86)\Bazaar\;C:\Program Files\Mercurial\%Path%
25+ - go version
26+ - go env
27+ - go get -u github.com/golang/dep/cmd/dep
28+ - ps : cd go
29+ - dep ensure
30+
31+ build : false
32+ deploy : false
33+
34+ test_script :
35+ - go test -v github.com/netlify/open-api/...
Original file line number Diff line number Diff line change 11// +build !windows
2+
23package porcelain
34
45func forceSlashSeparators (name string ) string {
You can’t perform that action at this time.
0 commit comments