diff options
author | Felix Lange <fjl@twurst.com> | 2016-05-25 20:07:57 +0800 |
---|---|---|
committer | Felix Lange <fjl@twurst.com> | 2016-06-22 19:42:39 +0800 |
commit | 6c33ba14a4db99409657e6a68a7c629e09ceee3f (patch) | |
tree | 7b73dadb69a0e626e6c2c922da2ac17bba8e94d4 /build/win-ci-compile.bat | |
parent | a38be3eb488a349693a9c9905ab015278281f8db (diff) | |
download | go-tangerine-6c33ba14a4db99409657e6a68a7c629e09ceee3f.tar go-tangerine-6c33ba14a4db99409657e6a68a7c629e09ceee3f.tar.gz go-tangerine-6c33ba14a4db99409657e6a68a7c629e09ceee3f.tar.bz2 go-tangerine-6c33ba14a4db99409657e6a68a7c629e09ceee3f.tar.lz go-tangerine-6c33ba14a4db99409657e6a68a7c629e09ceee3f.tar.xz go-tangerine-6c33ba14a4db99409657e6a68a7c629e09ceee3f.tar.zst go-tangerine-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-compile.bat')
-rw-r--r-- | build/win-ci-compile.bat | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/build/win-ci-compile.bat b/build/win-ci-compile.bat deleted file mode 100644 index 5750990bf..000000000 --- a/build/win-ci-compile.bat +++ /dev/null @@ -1,26 +0,0 @@ -@echo off -if not exist .\build\win-ci-compile.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 - -rem set gitCommit when running from a Git checkout. -set goLinkFlags="" -if exist ".git\HEAD" ( - where /q git - if not errorlevel 1 ( - for /f %%h in ('git rev-parse HEAD') do ( - set goLinkFlags="-X main.gitCommit=%%h" - ) - ) -) - -@echo on -go install -v -ldflags %goLinkFlags% ./... |