forked from TrueCloudLab/frostfs-node
[#785] make: Add preparing release binaries
Signed-off-by: Pavel Karpy <carpawell@nspcc.ru>
This commit is contained in:
parent
9fa4a254b2
commit
94f3937c0e
2 changed files with 21 additions and 2 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,5 +1,6 @@
|
|||
.idea
|
||||
bin
|
||||
release
|
||||
temp
|
||||
cmd/test
|
||||
/plugins/
|
||||
|
|
22
Makefile
22
Makefile
|
@ -9,14 +9,19 @@ DEBUG ?= false
|
|||
HUB_IMAGE ?= nspccdev/neofs
|
||||
HUB_TAG ?= "$(shell echo ${VERSION} | sed 's/^v//')"
|
||||
|
||||
GO_VERSION ?= 1.16
|
||||
|
||||
BIN = bin
|
||||
DIRS= $(BIN)
|
||||
DIRS = $(BIN)
|
||||
|
||||
RELEASE = release
|
||||
ARCH = amd64
|
||||
|
||||
# List of binaries to build.
|
||||
CMDS = $(notdir $(basename $(wildcard cmd/*)))
|
||||
BINS = $(addprefix $(BIN)/, $(CMDS))
|
||||
|
||||
.PHONY: help all dep clean fmts fmt imports test lint docker/lint
|
||||
.PHONY: help all dep clean fmts fmt imports test lint docker/lint prepare-release
|
||||
|
||||
# To build a specific binary, use it's name prefix with bin/ as a target
|
||||
# For example `make bin/neofs-node` will build only storage node binary
|
||||
|
@ -37,6 +42,18 @@ $(DIRS):
|
|||
@echo "⇒ Ensure dir: $@"
|
||||
@mkdir -p $@
|
||||
|
||||
# Directory for release files
|
||||
$(RELEASE):
|
||||
@echo "⇒ Ensure dir: $@"
|
||||
@mkdir -p $@
|
||||
|
||||
# Prepare binaries and archives for release
|
||||
prepare-release: $(RELEASE) docker/all
|
||||
@for file in $$(find $(BIN) -name 'neofs-*' -printf "%f\n"); do \
|
||||
cp $(BIN)/$$file $(RELEASE)/$$file-$(ARCH) && \
|
||||
tar -czf $(RELEASE)/$$file-$(ARCH).tar.gz $(RELEASE)/$$file-$(ARCH) ; \
|
||||
done
|
||||
|
||||
# Pull go dependencies
|
||||
dep:
|
||||
@printf "⇒ Download requirements: "
|
||||
|
@ -135,3 +152,4 @@ help:
|
|||
clean:
|
||||
rm -rf vendor
|
||||
rm -rf $(BIN)
|
||||
rm -rf $(RELEASE)
|
||||
|
|
Loading…
Reference in a new issue