forked from PostHog/posthog-android
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
38 lines (27 loc) · 731 Bytes
/
Makefile
File metadata and controls
38 lines (27 loc) · 731 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
35
36
37
38
.PHONY: clean compile stop checkFormat format api dryRelease release testReport test testJava
clean:
./gradlew clean
compile:
./gradlew build
# We stop gradle at the end to make sure the cache folders
# don't contain any lock files and are free to be cached.
stop:
./gradlew --stop
checkFormat:
./gradlew spotlessCheck
format:
./gradlew spotlessApply
api:
./gradlew apiDump
dryRelease:
./gradlew publishToMavenLocal
release:
./gradlew publishToSonatype closeAndReleaseSonatypeStagingRepository
testReport:
./gradlew koverHtmlReport
# compile already runs the tests (tests java and android)
test:
./gradlew testDebugUnitTest
# compile already runs the tests (tests only java)
testJava:
./gradlew :posthog:test