The following pull request was submitted through Github. It can be accessed and reviewed at: https://github.com/lxc/lxd/pull/2538
This e-mail was sent by the LXC bot, direct replies will not reach the author unless they happen to be subscribed to this list. === Description (from pull-request) === Closes #2537 Signed-off-by: Stéphane Graber <[email protected]>
From b074d3cee8b2fec600dbdaf5b5f637ed1b82d1ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Graber?= <[email protected]> Date: Thu, 20 Oct 2016 12:24:11 -0400 Subject: [PATCH] Add appveyor config to git MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Closes #2537 Signed-off-by: Stéphane Graber <[email protected]> --- .appveyor.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .appveyor.yml diff --git a/.appveyor.yml b/.appveyor.yml new file mode 100644 index 0000000..c51c28c --- /dev/null +++ b/.appveyor.yml @@ -0,0 +1,26 @@ +version: '{branch}.{build}' +image: Visual Studio 2015 +clone_folder: c:\gopath\src\github.com\lxc\lxd +environment: + GOPATH: c:\gopath + +install: +- cmd: >- + echo %PATH% + echo %GOPATH% + set PATH=%GOPATH%\bin;c:\go\bin;%PATH% + go version + go env + +build_script: +- cmd: >- + go get -t -v -d ./... + go install -v ./lxc + +test_script: +- cmd: >- + cd c:\gopath\src\github.com\lxc\lxd + go test ./ + go test ./shared + go test ./lxc + lxc version
_______________________________________________ lxc-devel mailing list [email protected] http://lists.linuxcontainers.org/listinfo/lxc-devel
