Browse Source
Merge pull request #698 from tendermint/feat-appveyor
WIP: Run tests on AppVeyor
pull/832/merge
Ethan Buchman
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
13 additions and
0 deletions
-
appveyor.yml
|
|
@ -0,0 +1,13 @@ |
|
|
|
version: 1.0.{build} |
|
|
|
configuration: Release |
|
|
|
platform: |
|
|
|
- x64 |
|
|
|
- x86 |
|
|
|
clone_folder: c:\go\path\src\github.com\tendermint\tendermint |
|
|
|
before_build: |
|
|
|
- cmd: set GOPATH=%GOROOT%\path |
|
|
|
- cmd: set PATH=%GOPATH%\bin;%PATH% |
|
|
|
- cmd: make get_vendor_deps |
|
|
|
build_script: |
|
|
|
- cmd: make test |
|
|
|
test: off |