-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
efa6433
commit cca8aae
Showing
1 changed file
with
143 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,143 @@ | ||
SHELL := $(shell which bash) | ||
|
||
NO_COLOR := \033[0m | ||
OK_COLOR := \033[32;01m | ||
ERR_COLOR := \033[31;01m | ||
WARN_COLOR := \033[36;01m | ||
ATTN_COLOR := \033[33;01m | ||
|
||
GOOS := $(shell go env GOOS) | ||
GOARCH := $(shell go env GOARCH) | ||
GOPRIVATE := "github.com/aserto-dev" | ||
DOCKER_BUILDKIT := 1 | ||
|
||
BIN_DIR := ./bin | ||
EXT_DIR := ./.ext | ||
EXT_BIN_DIR := ${EXT_DIR}/bin | ||
EXT_TMP_DIR := ${EXT_DIR}/tmp | ||
|
||
SVU_VERSION := 1.12.0 | ||
GOTESTSUM_VERSION := 1.11.0 | ||
GOLANGCI-LINT_VERSION := 1.56.2 | ||
GORELEASER_VERSION := 1.24.0 | ||
WIRE_VERSION := 0.6.0 | ||
|
||
RELEASE_TAG := $$(svu) | ||
|
||
.DEFAULT_GOAL := build | ||
|
||
.PHONY: deps | ||
deps: info install-svu install-goreleaser install-golangci-lint install-gotestsum install-wire | ||
@echo -e "$(ATTN_COLOR)==> $@ $(NO_COLOR)" | ||
|
||
.PHONY: build | ||
build: | ||
@echo -e "$(ATTN_COLOR)==> $@ $(NO_COLOR)" | ||
@${EXT_BIN_DIR}/goreleaser build --clean --snapshot --single-target | ||
|
||
.PHONY: dev-release | ||
dev-release: | ||
@echo -e "$(ATTN_COLOR)==> $@ $(NO_COLOR)" | ||
@${EXT_BIN_DIR}/goreleaser release --clean --snapshot | ||
|
||
.PHONY: release | ||
release: | ||
@echo -e "$(ATTN_COLOR)==> $@ $(NO_COLOR)" | ||
@${EXT_BIN_DIR}/goreleaser release --clean | ||
|
||
.PHONY: generate | ||
generate: | ||
@echo -e "$(ATTN_COLOR)==> $@ $(NO_COLOR)" | ||
@GOBIN=${PWD}/${EXT_BIN_DIR} go generate ./... | ||
|
||
.PHONY: lint | ||
lint: | ||
@echo -e "$(ATTN_COLOR)==> $@ $(NO_COLOR)" | ||
@${EXT_BIN_DIR}/golangci-lint run --config ${PWD}/.golangci.yaml | ||
|
||
.PHONY: test | ||
test: | ||
@echo -e "$(ATTN_COLOR)==> $@ $(NO_COLOR)" | ||
@${EXT_BIN_DIR}/gotestsum --format short-verbose -- -count=1 -parallel=1 -v -timeout=240s -coverprofile=cover.out -coverpkg=./... ./... | ||
|
||
.PHONY: write-version | ||
write-version: | ||
@echo -e "$(ATTN_COLOR)==> $@ $(NO_COLOR)" | ||
@git describe --tags > ./VERSION.txt | ||
|
||
.PHONY: info | ||
info: | ||
@echo -e "$(ATTN_COLOR)==> $@ $(NO_COLOR)" | ||
@echo "GOOS: ${GOOS}" | ||
@echo "GOARCH: ${GOARCH}" | ||
@echo "BIN_DIR: ${BIN_DIR}" | ||
@echo "EXT_DIR: ${EXT_DIR}" | ||
@echo "EXT_BIN_DIR: ${EXT_BIN_DIR}" | ||
@echo "EXT_TMP_DIR: ${EXT_TMP_DIR}" | ||
@echo "RELEASE_TAG: ${RELEASE_TAG}" | ||
|
||
.PHONY: install-svu | ||
install-svu: install-svu-${GOOS} | ||
@echo -e "$(ATTN_COLOR)==> $@ $(NO_COLOR)" | ||
@chmod +x ${EXT_BIN_DIR}/svu | ||
@${EXT_BIN_DIR}/svu --version | ||
|
||
.PHONY: install-svu-darwin | ||
install-svu-darwin: ${EXT_TMP_DIR} ${EXT_BIN_DIR} | ||
@echo -e "$(ATTN_COLOR)==> $@ $(NO_COLOR)" | ||
@gh release download --repo https://github.com/caarlos0/svu --pattern "svu_*_darwin_all.tar.gz" --output "${EXT_TMP_DIR}/svu.tar.gz" --clobber | ||
@tar -xvf ${EXT_TMP_DIR}/svu.tar.gz --directory ${EXT_BIN_DIR} svu &> /dev/null | ||
|
||
.PHONY: install-svu-linux | ||
install-svu-linux: ${EXT_TMP_DIR} ${EXT_BIN_DIR} | ||
@echo -e "$(ATTN_COLOR)==> $@ $(NO_COLOR)" | ||
@gh release download --repo https://github.com/caarlos0/svu --pattern "svu_*_linux_${GOARCH}.tar.gz" --output "${EXT_TMP_DIR}/svu.tar.gz" --clobber | ||
@tar -xvf ${EXT_TMP_DIR}/svu.tar.gz --directory ${EXT_BIN_DIR} svu &> /dev/null | ||
|
||
.PHONY: install-gotestsum | ||
install-gotestsum: ${EXT_TMP_DIR} ${EXT_BIN_DIR} | ||
@echo -e "$(ATTN_COLOR)==> $@ $(NO_COLOR)" | ||
@gh release download v${GOTESTSUM_VERSION} --repo https://github.com/gotestyourself/gotestsum --pattern "gotestsum_${GOTESTSUM_VERSION}_${GOOS}_${GOARCH}.tar.gz" --output "${EXT_TMP_DIR}/gotestsum.tar.gz" --clobber | ||
@tar -xvf ${EXT_TMP_DIR}/gotestsum.tar.gz --directory ${EXT_BIN_DIR} gotestsum &> /dev/null | ||
@chmod +x ${EXT_BIN_DIR}/gotestsum | ||
@${EXT_BIN_DIR}/gotestsum --version | ||
|
||
.PHONY: install-golangci-lint | ||
install-golangci-lint: ${EXT_TMP_DIR} ${EXT_BIN_DIR} | ||
@echo -e "$(ATTN_COLOR)==> $@ $(NO_COLOR)" | ||
@gh release download v${GOLANGCI-LINT_VERSION} --repo https://github.com/golangci/golangci-lint --pattern "golangci-lint-${GOLANGCI-LINT_VERSION}-${GOOS}-${GOARCH}.tar.gz" --output "${EXT_TMP_DIR}/golangci-lint.tar.gz" --clobber | ||
@tar --strip=1 -xvf ${EXT_TMP_DIR}/golangci-lint.tar.gz --strip-components=1 --directory ${EXT_TMP_DIR} &> /dev/null | ||
@mv ${EXT_TMP_DIR}/golangci-lint ${EXT_BIN_DIR}/golangci-lint | ||
@chmod +x ${EXT_BIN_DIR}/golangci-lint | ||
@${EXT_BIN_DIR}/golangci-lint --version | ||
|
||
.PHONY: install-goreleaser | ||
install-goreleaser: ${EXT_TMP_DIR} ${EXT_BIN_DIR} | ||
@echo -e "$(ATTN_COLOR)==> $@ $(NO_COLOR)" | ||
@gh release download v${GORELEASER_VERSION} --repo https://github.com/goreleaser/goreleaser --pattern "goreleaser_$$(uname -s)_$$(uname -m).tar.gz" --output "${EXT_TMP_DIR}/goreleaser.tar.gz" --clobber | ||
@tar -xvf ${EXT_TMP_DIR}/goreleaser.tar.gz --directory ${EXT_BIN_DIR} goreleaser &> /dev/null | ||
@chmod +x ${EXT_BIN_DIR}/goreleaser | ||
@${EXT_BIN_DIR}/goreleaser --version | ||
|
||
.PHONY: install-wire | ||
install-wire: ${EXT_TMP_DIR} ${EXT_BIN_DIR} | ||
@echo -e "$(ATTN_COLOR)==> $@ $(NO_COLOR)" | ||
@GOBIN=${PWD}/${EXT_BIN_DIR} go install github.com/google/wire/cmd/wire@v${WIRE_VERSION} | ||
|
||
.PHONY: clean | ||
clean: | ||
@echo -e "$(ATTN_COLOR)==> $@ $(NO_COLOR)" | ||
@rm -rf ${EXT_DIR} | ||
@rm -rf ${BIN_DIR} | ||
|
||
${BIN_DIR}: | ||
@echo -e "$(ATTN_COLOR)==> $@ $(NO_COLOR)" | ||
@mkdir -p ${BIN_DIR} | ||
|
||
${EXT_BIN_DIR}: | ||
@echo -e "$(ATTN_COLOR)==> $@ $(NO_COLOR)" | ||
@mkdir -p ${EXT_BIN_DIR} | ||
|
||
${EXT_TMP_DIR}: | ||
@echo -e "$(ATTN_COLOR)==> $@ $(NO_COLOR)" | ||
@mkdir -p ${EXT_TMP_DIR} |