golangci-lint/Makefile

106 lines
2.9 KiB
Makefile
Raw Normal View History

.DEFAULT_GOAL = test
.PHONY: FORCE
2019-09-16 11:34:35 -04:00
# enable module support across all go commands.
export GO111MODULE = on
# enable consistent Go 1.12/1.13 GOPROXY behavior.
export GOPROXY = https://proxy.golang.org
# Build
build: golangci-lint
2019-12-29 21:32:33 -05:00
.PHONY: build
build_race:
go build -race -o golangci-lint ./cmd/golangci-lint
.PHONY: build_race
clean:
rm -f golangci-lint
rm -f test/path
rm -f tools/Dracula.itermcolors
rm -f tools/godownloader
rm -f tools/goreleaser
rm -f tools/svg-term
rm -rf tools/node_modules
2019-12-29 21:32:33 -05:00
.PHONY: clean
# Test
test: export GOLANGCI_LINT_INSTALLED = true
test: build
GL_TEST_RUN=1 time ./golangci-lint run -v
GL_TEST_RUN=1 time ./golangci-lint run --fast --no-config -v --skip-dirs 'test/testdata_etc,internal/(cache|renameio|robustio)'
GL_TEST_RUN=1 time ./golangci-lint run --no-config -v --skip-dirs 'test/testdata_etc,internal/(cache|renameio|robustio)'
GL_TEST_RUN=1 time go test -v ./...
.PHONY: test
2019-12-29 21:32:33 -05:00
test_race: build_race
GL_TEST_RUN=1 ./golangci-lint run -v --timeout=5m
.PHONY: test_race
2018-06-28 21:27:07 +03:00
test_linters:
GL_TEST_RUN=1 go test -v ./test -count 1 -run TestSourcesFromTestdataWithIssuesDir/$T
.PHONY: test_linters
2018-06-28 21:27:07 +03:00
# Maintenance
2018-06-02 14:04:54 +03:00
2020-04-22 01:52:59 +03:00
generate: README.md docs/demo.svg install.sh
2019-12-29 21:32:33 -05:00
.PHONY: generate
2020-04-22 01:52:59 +03:00
fast_generate: README.md
2019-12-29 21:32:33 -05:00
.PHONY: fast_generate
maintainer-clean: clean
2020-04-22 01:52:59 +03:00
rm -rf docs/demo.svg README.md install.sh
2019-12-29 21:32:33 -05:00
.PHONY: maintainer-clean
2018-06-02 14:04:54 +03:00
check_generated:
$(MAKE) --always-make generate
2020-04-22 01:52:59 +03:00
git checkout -- go.mod go.sum # can differ between go1.12 and go1.13
git diff --exit-code # check no changes
.PHONY: check_generated
2018-06-02 14:04:54 +03:00
fast_check_generated:
$(MAKE) --always-make fast_generate
2020-04-22 01:52:59 +03:00
git checkout -- go.mod go.sum # can differ between go1.12 and go1.13
git diff --exit-code # check no changes
.PHONY: fast_check_generated
release: .goreleaser.yml tools/goreleaser
./tools/goreleaser
.PHONY: release
# Non-PHONY targets (real files)
golangci-lint: FORCE
go build -o $@ ./cmd/golangci-lint
tools/godownloader: export GOFLAGS = -mod=readonly
tools/godownloader: tools/go.mod tools/go.sum
cd tools && go build github.com/goreleaser/godownloader
tools/goreleaser: export GOFLAGS = -mod=readonly
tools/goreleaser: tools/go.mod tools/go.sum
cd tools && go build github.com/goreleaser/goreleaser
tools/svg-term: tools/package.json tools/package-lock.json
cd tools && npm ci
ln -sf node_modules/.bin/svg-term $@
tools/Dracula.itermcolors:
curl -fL -o $@ https://raw.githubusercontent.com/dracula/iterm/master/Dracula.itermcolors
docs/demo.svg: tools/svg-term tools/Dracula.itermcolors
2019-09-16 11:34:35 -04:00
./tools/svg-term --cast=183662 --out docs/demo.svg --window --width 110 --height 30 --from 2000 --to 20000 --profile ./tools/Dracula.itermcolors --term iterm2
install.sh: .goreleaser.yml tools/godownloader
./tools/godownloader .goreleaser.yml | sed '/DO NOT EDIT/s/ on [0-9TZ:-]*//' > $@
README.md: FORCE golangci-lint
go run ./scripts/gen_readme/main.go
go.mod: FORCE
go mod tidy
go mod verify
go.sum: go.mod