mirror of
https://github.com/strongdm/comply
synced 2025-02-22 18:46:11 +00:00
release makefile
This commit is contained in:
parent
bd7899ee31
commit
af48939756
37
Makefile
37
Makefile
@ -1,6 +1,8 @@
|
|||||||
.DEFAULT_GOAL := comply
|
.DEFAULT_GOAL := comply
|
||||||
GO_SOURCES := $(shell find . -name '*.go')
|
GO_SOURCES := $(shell find . -name '*.go')
|
||||||
THEME_SOURCES := $(shell find themes)
|
THEME_SOURCES := $(shell find themes)
|
||||||
|
VERSION := $(shell git describe --tags --always --dirty="-dev")
|
||||||
|
LDFLAGS := -ldflags='-X "cli.Version=$(VERSION)"'
|
||||||
|
|
||||||
assets: $(THEME_SOURCES)
|
assets: $(THEME_SOURCES)
|
||||||
go-bindata-assetfs -pkg theme -prefix themes themes/...
|
go-bindata-assetfs -pkg theme -prefix themes themes/...
|
||||||
@ -9,6 +11,15 @@ assets: $(THEME_SOURCES)
|
|||||||
comply: assets $(GO_SOURCES)
|
comply: assets $(GO_SOURCES)
|
||||||
go build github.com/strongdm/comply/cmd/comply
|
go build github.com/strongdm/comply/cmd/comply
|
||||||
|
|
||||||
|
dist: clean
|
||||||
|
mkdir dist
|
||||||
|
GOOS=darwin GOARCH=amd64 CGO_ENABLED=0 go build $(LDFLAGS) -o dist/comply-$(VERSION)-darwin-amd64 github.com/strongdm/comply/cmd/comply
|
||||||
|
GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build $(LDFLAGS) -o dist/comply-$(VERSION)-linux-amd64 github.com/strongdm/comply/cmd/comply
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -rf dist
|
||||||
|
rm -f comply
|
||||||
|
|
||||||
install: assets $(GO_SOURCES)
|
install: assets $(GO_SOURCES)
|
||||||
go install github.com/strongdm/comply/cmd/comply
|
go install github.com/strongdm/comply/cmd/comply
|
||||||
|
|
||||||
@ -33,3 +44,29 @@ cleanse:
|
|||||||
git push -f origin master
|
git push -f origin master
|
||||||
git gc --aggressive --prune=all
|
git gc --aggressive --prune=all
|
||||||
|
|
||||||
|
release: dist gh-release
|
||||||
|
github-release release \
|
||||||
|
--security-token $$GH_LOGIN \
|
||||||
|
--user strongdm \
|
||||||
|
--repo comply \
|
||||||
|
--tag $(VERSION) \
|
||||||
|
--name $(VERSION)
|
||||||
|
|
||||||
|
github-release upload \
|
||||||
|
--security-token $$GH_LOGIN \
|
||||||
|
--user strongdm \
|
||||||
|
--repo comply \
|
||||||
|
--tag $(VERSION) \
|
||||||
|
--name comply-$(VERSION)-darwin-amd64 \
|
||||||
|
--file dist/comply-$(VERSION)-darwin-amd64
|
||||||
|
|
||||||
|
github-release upload \
|
||||||
|
--security-token $$GH_LOGIN \
|
||||||
|
--user strongdm \
|
||||||
|
--repo comply \
|
||||||
|
--tag $(VERSION) \
|
||||||
|
--name comply-$(VERSION)-linux-amd64 \
|
||||||
|
--file dist/comply-$(VERSION)-linux-amd64
|
||||||
|
|
||||||
|
gh-release:
|
||||||
|
go get -u github.com/aktau/github-release
|
Loading…
x
Reference in New Issue
Block a user