Skip to content

Commit

Permalink
Fix deb build (#181)
Browse files Browse the repository at this point in the history
* Fix deb packaging failure
  • Loading branch information
davi17g authored Apr 4, 2024
1 parent 6262cd7 commit e63409e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -77,12 +77,14 @@ test:

.PHONY: rpm
rpm: tarball
mkdir -p $(WORKSPACE)/target
mkdir -p $(WORKSPACE)/packages/rpm/SOURCES
mv /tmp/$(BINARY_NAME)-$(VERSION)-$(UNAME_M).tar.gz $(WORKSPACE)/packages/rpm/SOURCES/
BINARY_NAME=$(BINARY_NAME) GIT_COMMIT=$(GIT_COMMIT) VERSION=$(VERSION) $(MAKE) -C packages/rpm

.PHONY: deb
deb: tarball
mkdir -p $(WORKSPACE)/target
mkdir -p $(WORKSPACE)/packages/deb/$(ARCH)
tar -xvf /tmp/$(BINARY_NAME)-$(VERSION)-$(UNAME_M).tar.gz -C $(WORKSPACE)/packages/deb/$(ARCH)
BINARY_NAME=$(BINARY_NAME) GIT_COMMIT=$(GIT_COMMIT) VERSION=$(VERSION) ARCH=$(ARCH) $(MAKE) -C packages/deb
Expand Down
3 changes: 3 additions & 0 deletions packages/deb/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
aerospike-backup-service (0.3.0-1) unstable; urgency=low
* Version 0.3.0 release
-- David Gerchikov <[email protected]> Thu, 04 Apr 2024 10:08:23 +0300
aerospike-backup-service (0.2.0-1) unstable; urgency=low
* Initial Release
-- David Gerchikov <[email protected]> Tue, 19 Dec 2023 11:55:00 +0200

0 comments on commit e63409e

Please sign in to comment.