forked from forgejo/forgejo
Integrate public as bindata optionally (#293)
* 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
This commit is contained in:
parent
4680c349dd
commit
b6a95a8cb3
691 changed files with 305318 additions and 1272 deletions
32
vendor/github.com/pingcap/tidb/make.cmd
generated
vendored
Normal file
32
vendor/github.com/pingcap/tidb/make.cmd
generated
vendored
Normal file
|
@ -0,0 +1,32 @@
|
|||
@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]
|
Loading…
Add table
Add a link
Reference in a new issue