process-compose/Makefile

68 lines
1.6 KiB
Makefile
Raw Normal View History

2022-11-01 18:16:41 +03:00
NAME=process-compose
2022-04-16 01:44:27 +03:00
RM=rm
2022-05-03 00:51:27 +03:00
VERSION = $(shell git describe --abbrev=0)
GIT_REV ?= $(shell git rev-parse --short HEAD)
DATE ?= $(shell date -u +"%Y-%m-%dT%H:%M:%SZ")
2022-11-01 18:16:41 +03:00
NUMVER = $(shell echo ${VERSION} | cut -d"v" -f 2)
PKG = github.com/f1bonacc1/${NAME}
2022-12-17 03:16:52 +03:00
SHELL := /bin/bash
LD_FLAGS := -ldflags="-X ${PKG}/src/config.Version=${VERSION} \
-X ${PKG}/src/config.CheckForUpdates=true \
-X ${PKG}/src/config.Commit=${GIT_REV} \
-X ${PKG}/src/config.Date=${DATE} \
-s -w"
2022-04-16 01:44:27 +03:00
ifeq ($(OS),Windows_NT)
EXT=.exe
RM = cmd /C del /Q /F
endif
2022-04-06 00:26:50 +03:00
2022-05-02 01:49:19 +03:00
.PHONY: test run testrace
2022-04-06 00:26:50 +03:00
buildrun: build run
swag:
~/go/bin/swag init --dir src --output src/docs --parseDependency --parseInternal --parseDepth 1
2022-04-06 00:26:50 +03:00
build:
2022-11-01 18:16:41 +03:00
go build -o bin/${NAME}${EXT} ${LD_FLAGS} ./src
build-nix:
nix build .
nixver:
sed -i 's/version = ".*"/version = "${NUMVER}"/' default.nix
2022-04-06 00:26:50 +03:00
compile:
2022-11-01 18:16:41 +03:00
for arch in amd64 386 arm64 arm; do \
2022-11-01 20:52:00 +03:00
GOOS=linux GOARCH=$$arch go build ${LD_FLAGS} -o bin/${NAME}-linux-$$arch ./src ; \
2022-11-01 18:16:41 +03:00
done;
2022-04-16 01:44:27 +03:00
2022-11-01 18:16:41 +03:00
for arch in amd64 arm64; do \
2022-11-01 20:52:00 +03:00
GOOS=darwin GOARCH=$$arch go build ${LD_FLAGS} -o bin/${NAME}-darwin-$$arch ./src ; \
2022-11-01 18:16:41 +03:00
done;
2022-04-16 12:55:05 +03:00
2022-11-01 18:16:41 +03:00
for arch in amd64 arm64; do \
2022-11-01 20:52:00 +03:00
GOOS=windows GOARCH=$$arch go build ${LD_FLAGS} -o bin/${NAME}-windows-$$arch.exe ./src ; \
2022-11-01 18:16:41 +03:00
done;
2022-06-08 21:47:01 +03:00
2022-04-06 00:26:50 +03:00
test:
go test -cover ./src/...
2022-05-02 01:49:19 +03:00
testrace:
go test -race ./src/...
2022-04-06 00:26:50 +03:00
coverhtml:
go test -coverprofile=coverage.out ./src
go tool cover -html=coverage.out
run:
2022-11-01 18:16:41 +03:00
PC_DEBUG_MODE=1 ./bin/${NAME}${EXT}
2022-04-06 00:26:50 +03:00
clean:
2022-11-01 18:16:41 +03:00
$(RM) bin/${NAME}*
2022-12-17 03:16:52 +03:00
release:
source exports
goreleaser release --rm-dist --skip-validate
snapshot:
goreleaser release --snapshot --rm-dist