b6a95a8cb3
* Dropped unused codekit config * Integrated dynamic and static bindata for public * Ignore public bindata * Add a general generate make task * Integrated flexible public assets into web command * Updated vendoring, added all missiong govendor deps * Made the linter happy with the bindata and dynamic code * Moved public bindata definition to modules directory * Ignoring the new bindata path now * Updated to the new public modules import path * Updated public bindata command and drop the new prefix
32 lines
800 B
Batchfile
32 lines
800 B
Batchfile
@echo off
|
|
::go build option
|
|
set TiDBBuildTS=%date:~0,10% %time:~1,7%
|
|
for /f "delims=" %%i in ('git rev-parse HEAD') do (set TiDBGitHash=%%i)
|
|
set LDFLAGS="-X github.com/pingcap/tidb/util/printer.TiDBBuildTS=%TiDBBuildTS% -X github.com/pingcap/tidb/util/printer.TiDBGitHash=%TiDBGitHash%"
|
|
|
|
:: godep
|
|
go get github.com/tools/godep
|
|
|
|
@echo [Parser]
|
|
go get github.com/qiuyesuifeng/goyacc
|
|
go get github.com/qiuyesuifeng/golex
|
|
type nul >>temp.XXXXXX
|
|
goyacc -o nul -xegen "temp.XXXXXX" parser/parser.y
|
|
goyacc -o parser/parser.go -xe "temp.XXXXXX" parser/parser.y
|
|
DEL /F /A /Q temp.XXXXXX
|
|
DEL /F /A /Q y.output
|
|
|
|
golex -o parser/scanner.go parser/scanner.l
|
|
|
|
@echo [Build]
|
|
godep go build -ldflags '%LDFLAGS%'
|
|
|
|
@echo [Install]
|
|
godep go install ./...
|
|
|
|
|
|
@echo [Test]
|
|
godep go test -cover ./...
|
|
|
|
::done
|
|
@echo [Done]
|