89 lines
1.8 KiB
Makefile
89 lines
1.8 KiB
Makefile
SOURCES = $(shell find . -name '*.go')
|
|
PARSERS = $(shell find . -name '*.treerack')
|
|
|
|
default: build
|
|
|
|
deps:
|
|
go get golang.org/x/tools/cmd/goimports
|
|
go get -t ./...
|
|
|
|
imports: $(SOURCES)
|
|
@echo imports
|
|
@goimports -w $(SOURCES)
|
|
|
|
build: $(SOURCES)
|
|
go build
|
|
|
|
head: $(SOURCES)
|
|
go run scripts/createhead.go -- \
|
|
char.go \
|
|
sequence.go \
|
|
choice.go \
|
|
idset.go \
|
|
results.go \
|
|
context.go \
|
|
nodehead.go \
|
|
syntaxhead.go \
|
|
> head.go
|
|
|
|
generate: $(SOURCES) $(PARSERS) head
|
|
go run scripts/boot.go < syntax.treerack > self/self.go.next
|
|
@mv self/self.go{.next,}
|
|
@gofmt -s -w self/self.go
|
|
|
|
regenerate: $(SOURCES) $(PARSERS) head
|
|
go run scripts/boot.go < syntax.treerack > self/self.go.next
|
|
@mv self/self.go{.next,}
|
|
go run scripts/boot.go < syntax.treerack > self/self.go.next
|
|
@mv self/self.go{.next,}
|
|
@gofmt -s -w self/self.go
|
|
|
|
check: imports build $(PARSERS)
|
|
go test -test.short -run ^Test
|
|
|
|
check-full: imports build $(PARSERS)
|
|
go test
|
|
|
|
.coverprofile: $(SOURCES) imports
|
|
go test -coverprofile .coverprofile
|
|
|
|
cover: .coverprofile
|
|
go tool cover -func .coverprofile
|
|
|
|
show-cover: .coverprofile
|
|
go tool cover -html .coverprofile
|
|
|
|
publish-coverage: .coverprofile
|
|
curl -s https://codecov.io/bash -o codecov
|
|
bash codecov -Zf .coverprofile
|
|
|
|
cpu.out: $(SOURCES) $(PARSERS)
|
|
go test -v -run TestMMLFile -cpuprofile cpu.out
|
|
|
|
cpu: cpu.out
|
|
go tool pprof -top cpu.out
|
|
|
|
fmt: $(SOURCES)
|
|
@echo fmt
|
|
@gofmt -w -s $(SOURCES)
|
|
|
|
check-fmt: $(SOURCES)
|
|
@echo check fmt
|
|
@if [ "$$(gofmt -s -d $(SOURCES))" != "" ]; then false; else true; fi
|
|
|
|
vet:
|
|
go vet
|
|
|
|
precommit: regenerate fmt vet build check-full
|
|
|
|
clean:
|
|
rm -f *.test
|
|
rm -f cpu.out
|
|
rm -f .coverprofile
|
|
go clean -i ./...
|
|
|
|
ci-trigger: deps check-fmt build check-full
|
|
ifeq ($(TRAVIS_BRANCH)_$(TRAVIS_PULL_REQUEST), master_false)
|
|
make publish-coverage
|
|
endif
|