2017-04-24 09:20:46 -06:00
|
|
|
NAME=sour.is-paste
|
2020-08-17 12:36:48 -06:00
|
|
|
VERSION:=$(shell cat VERSION)
|
|
|
|
RELEASE:=$(shell cat RELEASE)
|
2017-04-24 09:20:46 -06:00
|
|
|
|
2020-08-17 12:40:32 -06:00
|
|
|
REPO_HOST="xuu@kapha"
|
2020-08-17 12:47:37 -06:00
|
|
|
ANSIBLE_HOST="kapha"
|
2017-04-24 09:20:46 -06:00
|
|
|
REPO_PATH="/opt/web/pub/sour.is/debian/"
|
|
|
|
|
|
|
|
all: release build copy
|
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -r BUILD/*
|
|
|
|
|
|
|
|
release:
|
2020-08-17 12:36:48 -06:00
|
|
|
@echo "release version $(RELEASE)"
|
|
|
|
@echo `expr $(RELEASE) + 1` > RELEASE
|
2020-08-17 12:47:37 -06:00
|
|
|
git commit -am "release version $(VERSION)-$(RELEASE)"
|
|
|
|
git tag -a -m "release version $(VERSION)-$(RELEASE)" "v$(VERSION)-$(RELEASE)"
|
2020-08-17 09:40:10 -06:00
|
|
|
git push --tags
|
2017-04-24 09:20:46 -06:00
|
|
|
|
|
|
|
build:
|
2020-08-17 12:36:48 -06:00
|
|
|
export BUILD="BUILD/$(NAME)_$(VERSION)-$(RELEASE)"; \
|
2017-04-24 09:20:46 -06:00
|
|
|
rm -rf ./$${BUILD}; \
|
|
|
|
cp -r ROOT "$${BUILD}"; \
|
2020-08-17 12:36:48 -06:00
|
|
|
sed -i'.tmp' "s_Version:.*_Version: $(VERSION)-$(RELEASE)_" "$${BUILD}/DEBIAN/control"
|
2018-03-13 16:25:18 -06:00
|
|
|
|
2020-08-17 09:40:10 -06:00
|
|
|
export DATE=`date -u +%FT%TZ`; \
|
2020-08-17 12:36:48 -06:00
|
|
|
export BUILD="BUILD/$(NAME)_$(VERSION)-$(RELEASE)"; \
|
2020-08-17 09:40:10 -06:00
|
|
|
env GOOS=linux GOARCH=amd64 go build -v -o $${BUILD}/opt/sour.is/bin/paste \
|
2020-08-17 12:36:48 -06:00
|
|
|
-ldflags "-X main.AppVersion=$(VERSION)-$(RELEASE) -X main.AppBuild=$${DATE}"\
|
2020-08-17 09:40:10 -06:00
|
|
|
sour.is/x/paste/cmd/paste; \
|
2018-03-23 17:07:31 -06:00
|
|
|
dpkg -b $${BUILD};
|
2017-04-24 09:20:46 -06:00
|
|
|
|
|
|
|
copy:
|
2020-08-17 12:36:48 -06:00
|
|
|
export BUILD="BUILD/$(NAME)_$(VERSION)-$(RELEASE)"; \
|
2018-02-15 09:11:52 -07:00
|
|
|
scp "$${BUILD}.deb" $(REPO_HOST):$(REPO_PATH); \
|
2020-08-17 12:36:48 -06:00
|
|
|
ssh $(REPO_HOST) -- $(REPO_PATH)scan.sh "$(REPO_PATH)$(NAME)_$(VERSION)-$(RELEASE).deb";
|
2017-04-24 09:20:46 -06:00
|
|
|
|
|
|
|
deploy:
|
2020-08-17 12:52:42 -06:00
|
|
|
ansible $(ANSIBLE_HOST) -u xuu -b -m apt -a "name=sour.is-paste update_cache=yes state=latest"
|
2018-03-13 16:25:18 -06:00
|
|
|
|
2018-04-27 16:44:44 -06:00
|
|
|
.PHONY: clean release build copy # deploy
|