aboutsummaryrefslogtreecommitdiffstats
path: root/build/win-ci-test.bat
diff options
context:
space:
mode:
Diffstat (limited to 'build/win-ci-test.bat')
-rw-r--r--build/win-ci-test.bat15
1 files changed, 15 insertions, 0 deletions
diff --git a/build/win-ci-test.bat b/build/win-ci-test.bat
new file mode 100644
index 000000000..5945426db
--- /dev/null
+++ b/build/win-ci-test.bat
@@ -0,0 +1,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 ./...