Skip to content

Commit 2528153

Browse files
author
arttii
committed
Merge branch 'master' of github.com:DataReply/korgi
2 parents 149692b + a9e294d commit 2528153

File tree

4 files changed

+15
-7
lines changed

4 files changed

+15
-7
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
.checkpoint
22
.checkpoint.idx
33
bin/
4-
*.csv.gz
4+
*.csv.gz
5+
.vscode/

.vscode/settings.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"go.inferGopath": false
3+
}

Makefile

+7-6
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,23 @@
1-
PROJECT_NAME :=korgi
1+
PROJECT_NAME:=korgi
22
GOFILES:=$(shell find . -name '*.go' | grep -v -E '(./vendor)')
3-
3+
OS:="$(shell uname | tr '[:upper:]' '[:lower:]')"
4+
ARCH:=amd64
5+
46
run:
57
go run main.go
68

79
all: clean check bin
810

9-
1011
bin: $(GOFILES)
11-
mkdir -p bin/linux/
12-
GOOS=linux GOARCH=amd64 go build -a -tags musl -ldflags "$(LDFLAGS)" -o bin/linux/korgi main.go
12+
mkdir -p bin/${OS}/
13+
GOOS=${OS} GOARCH=${ARCH} go build -a -tags musl -ldflags "$(LDFLAGS)" -o bin/${OS}/korgi main.go
1314

1415
gofmt:
1516
gofmt -w -s pkg/
1617
gofmt -w -s cmd/
1718

1819
test:
19-
GOOS=linux GOARCH=amd64 go test ./...
20+
GOOS=${OS} GOARCH=${ARCH} go test ./...
2021

2122
check:
2223
@find . -name vendor -prune -o -name '*.go' -exec gofmt -s -d {} +

pkg/utils/exec.go

+3
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@ type ExecLine struct {
3131
func consume(wg *sync.WaitGroup, r io.Reader, logHook func(string)) {
3232
defer wg.Done()
3333
s := bufio.NewScanner(r)
34+
buffer := make([]byte, 0, 1024*1024)
35+
s.Buffer(buffer, 1024*1024)
36+
3437
for s.Scan() {
3538
line := s.Text()
3639
if line != "" {

0 commit comments

Comments
 (0)