-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathMakefile
42 lines (30 loc) · 868 Bytes
/
Makefile
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
39
40
41
42
.PHONY: clean compile stop checkFormat format api dryRelease release testReport test testJava generateLintBaseLine
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
generateLintBaseLine:
rm -f posthog-android/lint-baseline.xml
./gradlew lintDebug -Dlint.baselines.continue=true