[Dev] Implement default targets for cicd

This commit is contained in:
samuel 2023-05-11 01:14:40 +02:00
parent 51367fea5c
commit e52ab0e19a
1 changed files with 12 additions and 0 deletions

View File

@ -31,3 +31,15 @@ install:
install -D --target-directory=$(DESTDIR)$(UNITDIR) systemd/netoik-api-server.service install -D --target-directory=$(DESTDIR)$(UNITDIR) systemd/netoik-api-server.service
install -D --no-target-directory bin/server $(DESTDIR)$(BINDIR)/$(NAME)-server install -D --no-target-directory bin/server $(DESTDIR)$(BINDIR)/$(NAME)-server
install --directory $(DESTDIR)$(VARDIR)/$(NAME)/captcha install --directory $(DESTDIR)$(VARDIR)/$(NAME)/captcha
.PHONY: check_format
check_format:
@echo "Not implemented!"
.PHONY: check_linting
check_linting:
@echo "Not implemented!"
.PHONY: unit_test
unit_test:
@echo "Not implemented!"