aboutsummaryrefslogtreecommitdiffstats
path: root/build/win-ci-test.bat
diff options
context:
space:
mode:
authorFelix Lange <fjl@twurst.com>2016-05-25 20:07:57 +0800
committerFelix Lange <fjl@twurst.com>2016-06-22 19:42:39 +0800
commit6c33ba14a4db99409657e6a68a7c629e09ceee3f (patch)
tree7b73dadb69a0e626e6c2c922da2ac17bba8e94d4 /build/win-ci-test.bat
parenta38be3eb488a349693a9c9905ab015278281f8db (diff)
downloaddexon-6c33ba14a4db99409657e6a68a7c629e09ceee3f.tar
dexon-6c33ba14a4db99409657e6a68a7c629e09ceee3f.tar.gz
dexon-6c33ba14a4db99409657e6a68a7c629e09ceee3f.tar.bz2
dexon-6c33ba14a4db99409657e6a68a7c629e09ceee3f.tar.lz
dexon-6c33ba14a4db99409657e6a68a7c629e09ceee3f.tar.xz
dexon-6c33ba14a4db99409657e6a68a7c629e09ceee3f.tar.zst
dexon-6c33ba14a4db99409657e6a68a7c629e09ceee3f.zip
build: add ci.go, use it everywhere
The new build script, ci.go, replaces some of the older shell scripts. ci.go can compile go-ethereum, run the tests, create release archives and debian source packages.
Diffstat (limited to 'build/win-ci-test.bat')
-rw-r--r--build/win-ci-test.bat15
1 files changed, 0 insertions, 15 deletions
diff --git a/build/win-ci-test.bat b/build/win-ci-test.bat
deleted file mode 100644
index 5945426db..000000000
--- a/build/win-ci-test.bat
+++ /dev/null
@@ -1,15 +0,0 @@
-@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 ./...