Skip to content

Commit 16d6555

Browse files
authored
[Maintenance] Makefile check targets (#975)
1 parent db52b3e commit 16d6555

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
- (Feature) Add Current ArangoDeployment Inspector
66
- (Refactor) Anonymous inspector functions
77
- (Feature) Recursive OwnerReference discovery
8+
- (Maintenance) Add check make targets
89

910
## [1.2.11](https://github.com/arangodb/kube-arangodb/tree/1.2.11) (2022-04-30)
1011
- (Bugfix) Orphan PVC are not removed

Makefile

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -510,3 +510,16 @@ synchronize-v2alpha1-with-v1:
510510
@make update-generated
511511
@make set-deployment-api-version-v2alpha1 bin
512512
@make set-deployment-api-version-v1 bin
513+
514+
.PHONY: check-all check-enterprise check-community _check
515+
516+
check-all: check-community check-enterprise
517+
518+
check-enterprise:
519+
@$(MAKE) _check RELEASE_MODE=enterprise
520+
521+
check-community:
522+
@$(MAKE) _check RELEASE_MODE=community
523+
524+
_check:
525+
@$(MAKE) fmt license-verify linter run-unit-tests bin

0 commit comments

Comments
 (0)