mirror of
https://github.com/neilotoole/sq.git
synced 2024-11-24 03:45:56 +03:00
7c56377b40
* Field alignment
43 lines
1.4 KiB
Makefile
43 lines
1.4 KiB
Makefile
PKG := github.com/neilotoole/sq
|
|
VERSION_PKG := $(PKG)/cli/buildinfo
|
|
BUILD_VERSION := $(shell git describe --tags --always --dirty)
|
|
BUILD_COMMIT := $(shell git rev-parse HEAD)
|
|
BUILD_TIMESTAMP := $(shell date -u '+%Y-%m-%dT%H:%M:%SZ')
|
|
LDFLAGS := -X $(VERSION_PKG).Version=$(BUILD_VERSION) -X $(VERSION_PKG).Commit=$(BUILD_COMMIT) -X $(VERSION_PKG).Timestamp=$(BUILD_TIMESTAMP)
|
|
BUILD_TAGS := sqlite_vtable sqlite_stat4 sqlite_fts5 sqlite_icu sqlite_introspect sqlite_json sqlite_math_functions
|
|
|
|
.PHONY: test
|
|
test:
|
|
@go test -tags "$(BUILD_TAGS)" ./...
|
|
|
|
.PHONY: install
|
|
install:
|
|
@go install -ldflags "$(LDFLAGS)" -tags "$(BUILD_TAGS)"
|
|
|
|
.PHONY: lint
|
|
lint:
|
|
@golangci-lint run --out-format tab --sort-results
|
|
@shellcheck ./install.sh
|
|
|
|
.PHONY: gen
|
|
gen:
|
|
@go generate ./...
|
|
@# Run betteralign on generated code
|
|
@# https://github.com/dkorunic/betteralign
|
|
@betteralign -apply ./libsq/ast/internal/slq &> /dev/null | true
|
|
|
|
.PHONY: fmt
|
|
fmt:
|
|
@# https://github.com/incu6us/goimports-reviser
|
|
@# Note that *_windows.go is excluded because the tool seems
|
|
@# to mangle Go code that is guarded by build tags that
|
|
@# are not in use.
|
|
@goimports-reviser -company-prefixes github.com/neilotoole -set-alias \
|
|
-excludes '**/*_windows.go' \
|
|
-rm-unused -output write \
|
|
-project-name github.com/neilotoole/sq ./...
|
|
|
|
@# Use gofumpt instead of "go fmt"
|
|
@# https://github.com/mvdan/gofumpt
|
|
@gofumpt -w .
|