aboutsummaryrefslogtreecommitdiffstats
path: root/build/win-ci-test.bat
blob: 5945426db032bdf909ff1458aa0be994f72e84ba (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
@echo off
if not exist .\build\win-ci-test.bat (
   echo This script must be run from the root of the repository.
   exit /b
)
if not defined GOPATH (
   echo GOPATH is not set.
   exit /b
)

set GOPATH=%GOPATH%;%cd%\Godeps\_workspace
set GOBIN=%cd%\build\bin

@echo on
go test ./...