-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add safe.Assert * rm mage, add makefile
- Loading branch information
Showing
10 changed files
with
169 additions
and
681 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
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
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
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 |
---|---|---|
|
@@ -5,5 +5,4 @@ toolchain go1.22.5 | |
use ( | ||
. | ||
./cmd/azmcmd | ||
./magefiles | ||
) |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,169 @@ | ||
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 | ||
|
||
EXT_DIR := ./.ext | ||
EXT_BIN_DIR := ${EXT_DIR}/bin | ||
EXT_TMP_DIR := ${EXT_DIR}/tmp | ||
|
||
VAULT_VERSION := 1.8.12 | ||
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 | ||
BUF_VERSION := 1.30.0 | ||
|
||
RELEASE_TAG := $$(svu) | ||
|
||
.DEFAULT_GOAL := build | ||
|
||
.PHONY: deps | ||
deps: info install-vault install-svu install-goreleaser install-golangci-lint install-gotestsum | ||
@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: snapshot | ||
snapshot: | ||
@echo -e "$(ATTN_COLOR)==> $@ $(NO_COLOR)" | ||
@${EXT_BIN_DIR}/goreleaser release --clean --snapshot | ||
|
||
.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 -coverprofile=cover.out -coverpkg=./... ./...; | ||
|
||
.PHONY: write-version | ||
write-version: | ||
@echo -e "$(ATTN_COLOR)==> $@ $(NO_COLOR)" | ||
@git describe --tags > ./VERSION.txt | ||
|
||
.PHONY: vault-login | ||
vault-login: | ||
@echo -e "$(ATTN_COLOR)==> $@ $(NO_COLOR)" | ||
@vault login -method=github token=$$(gh auth token) | ||
|
||
.PHONY: info | ||
info: | ||
@echo -e "$(ATTN_COLOR)==> $@ $(NO_COLOR)" | ||
@echo "GOOS: ${GOOS}" | ||
@echo "GOARCH: ${GOARCH}" | ||
@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-vault | ||
install-vault: ${EXT_BIN_DIR} ${EXT_TMP_DIR} | ||
@echo -e "$(ATTN_COLOR)==> $@ $(NO_COLOR)" | ||
@curl -s -o ${EXT_TMP_DIR}/vault.zip https://releases.hashicorp.com/vault/${VAULT_VERSION}/vault_${VAULT_VERSION}_${GOOS}_${GOARCH}.zip | ||
@unzip -o ${EXT_TMP_DIR}/vault.zip vault -d ${EXT_BIN_DIR}/ &> /dev/null | ||
@chmod +x ${EXT_BIN_DIR}/vault | ||
@${EXT_BIN_DIR}/vault --version | ||
|
||
.PHONY: install-buf | ||
install-buf: ${EXT_BIN_DIR} | ||
@echo -e "$(ATTN_COLOR)==> $@ $(NO_COLOR)" | ||
@gh release download v${BUF_VERSION} --repo https://github.com/bufbuild/buf --pattern "buf-$$(uname -s)-$$(uname -m)" --output "${EXT_BIN_DIR}/buf" --clobber | ||
@chmod +x ${EXT_BIN_DIR}/buf | ||
@${EXT_BIN_DIR}/buf --version | ||
|
||
.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} | ||
@rm -rf ./dist | ||
|
||
${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} |