-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
34 lines (23 loc) · 1006 Bytes
/
Makefile
File metadata and controls
34 lines (23 loc) · 1006 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
### SETUP
init:
$(MAKE) install
install:
./gradlew --console=colored :operator:quarkusBuild
### EXECUTION
run:
./gradlew --console=colored :operator:quarkusDev
generate-jooq:
./gradlew --console=colored :generated:jooqCodegen
# Latest PostgreSQL Version configured in application.yml
test:
./gradlew --console=colored :operator:clean :operator:test --rerun-tasks
test-pg18:
./gradlew --console=colored :operator:clean :operator:test --rerun-tasks -Dquarkus.test.profile=test-pg18
test-pg17:
./gradlew --console=colored :operator:clean :operator:test --rerun-tasks -Dquarkus.test.profile=test-pg17
test-pg16:
./gradlew --console=colored :operator:clean :operator:test --rerun-tasks -Dquarkus.test.profile=test-pg16
test-pg15:
./gradlew --console=colored :operator:clean :operator:test --rerun-tasks -Dquarkus.test.profile=test-pg15
# Flag targets as phony, to tell `make` that these are no file targets
.PHONY: init install run generate-jooq test test-pg18 test-pg17 test-pg16 test-pg15