process
This commit is contained in:
4
Makefile
4
Makefile
@@ -3,7 +3,9 @@ export DATE := $(shell date +%Y%m%d-%H:%M:%S)
|
|||||||
export COMPILE_LDFLAGS='-s -w -X "main.BuildDate=${DATE}" '
|
export COMPILE_LDFLAGS='-s -w -X "main.BuildDate=${DATE}" '
|
||||||
out:
|
out:
|
||||||
GOOS=darwin GOARCH=arm64 go build -o bin/sjy01-preprocessing-darwin-arm64 -ldflags=${COMPILE_LDFLAGS} *.go
|
GOOS=darwin GOARCH=arm64 go build -o bin/sjy01-preprocessing-darwin-arm64 -ldflags=${COMPILE_LDFLAGS} *.go
|
||||||
# GOOS=linux GOARCH=amd64 go build -o bin/sjy01-preprocessing -ldflags=${COMPILE_LDFLAGS} *.go
|
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -rf ./bin/*
|
rm -rf ./bin/*
|
||||||
|
|
||||||
|
linux:
|
||||||
|
GOOS=linux GOARCH=amd64 go build -o bin/sjy01-preprocessing -ldflags=${COMPILE_LDFLAGS} *.go
|
||||||
|
|||||||
@@ -55,7 +55,7 @@ func init() {
|
|||||||
|
|
||||||
func params() []*extract.Params {
|
func params() []*extract.Params {
|
||||||
var params []*extract.Params
|
var params []*extract.Params
|
||||||
datas := []string{"051513", "051522", "051613", "051622",
|
datas := []string{"051513", "051622",
|
||||||
"051712", "051721", "051821", "051823", "051921", "051922", "Q051723"}
|
"051712", "051721", "051821", "051823", "051921", "051922", "Q051723"}
|
||||||
for _, d := range datas {
|
for _, d := range datas {
|
||||||
params = append(params, &extract.Params{
|
params = append(params, &extract.Params{
|
||||||
|
|||||||
Reference in New Issue
Block a user