From d277cbf893248383a11a041d2cb15fdf7750e54a Mon Sep 17 00:00:00 2001 From: Dan Buch Date: Sun, 22 May 2016 19:32:48 -0400 Subject: [PATCH] Use clone_folder in appveyor.yml instead of dir moving shenanigans --- appveyor.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 87a3209..bc8a8d7 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -2,22 +2,20 @@ version: "{build}" os: Windows Server 2012 R2 +clone_folder: c:\gopath\src\github.com\urfave\cli + environment: GOPATH: c:\gopath GOVERSION: 1.6 install: - set PATH=%GOPATH%\bin;c:\go\bin;%PATH% - - set NEW_BUILD_DIR_DEST=c:\gopath\src\github.com\urfave - - mkdir %NEW_BUILD_DIR_DEST% - - xcopy /s %APPVEYOR_BUILD_FOLDER% %NEW_BUILD_DIR_DEST%\cli - - set APPVEYOR_BUILD_FOLDER=%NEW_BUILD_DIR_DEST%\cli - go version - go env - go get github.com/urfave/gfmxr/... + - go get -v -t ./... build_script: - - cd %APPVEYOR_BUILD_FOLDER% - ./runtests vet - ./runtests test - ./runtests gfmxr