From a2a132129ea12f408992ff55e612f7e5738922cd Mon Sep 17 00:00:00 2001 From: Josh Rickmar Date: Tue, 30 Jun 2015 22:27:30 -0400 Subject: [PATCH] Add AppVeyor continuous integration. --- README.md | 4 ++-- appveyor.yml | 18 ++++++++++++++++++ 2 files changed, 20 insertions(+), 2 deletions(-) create mode 100644 appveyor.yml diff --git a/README.md b/README.md index 7059a46..e260bb0 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000..3584b39 --- /dev/null +++ b/appveyor.yml @@ -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 ./...