Add AppVeyor continuous integration.

This commit is contained in:
Josh Rickmar 2015-06-30 22:27:30 -04:00
parent f7ed140a9b
commit a2a132129e
2 changed files with 20 additions and 2 deletions

View file

@ -1,8 +1,8 @@
btcwallet
=========
[![Build Status](https://travis-ci.org/btcsuite/btcwallet.png?branch=master)]
(https://travis-ci.org/btcsuite/btcwallet)
[![Build Status](https://travis-ci.org/btcsuite/btcwallet.png?branch=master)](https://travis-ci.org/btcsuite/btcwallet)
[![Build status](https://ci.appveyor.com/api/projects/status/88nxvckdj8upqr36/branch/master?svg=true)](https://ci.appveyor.com/project/jrick/btcwallet/branch/master)
btcwallet is a daemon handling bitcoin wallet functionality for a
single user. It acts as both an RPC client to btcd and an RPC server

18
appveyor.yml Normal file
View file

@ -0,0 +1,18 @@
version: "{build}"
clone_folder: c:\projects\src\github.com\btcsuite\btcwallet
environment:
PATH: c:\projects\bin;%PATH%
GOPATH: c:\projects
GORACE: halt_on_error=1
install:
- go version
- go get -v -t ./...
build_script:
- go build ./...
test_script:
- go test -v -race ./...