forked from medic/cht-gateway
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
91 lines (67 loc) · 2.08 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
ADB = ${ANDROID_HOME}/platform-tools/adb
EMULATOR = ${ANDROID_HOME}/tools/emulator
GRADLE = ./gradlew
GRADLE_OPTS = --daemon --parallel
flavor = Medic
flavor_lower = $(shell echo ${flavor} | tr '[:upper:]' '[:lower:]')
ifdef ComSpec # Windows
# Use `/` for all paths, except `.\`
ADB := $(subst \,/,${ADB})
EMULATOR := $(subst \,/,${EMULATOR})
GRADLEW := $(subst /,\,${GRADLE} ${GRADLE_OPTS})
endif
.PHONY: default assemble clean lint test deploy uninstall emulator kill logs force
.PHONY: all assemble-all assemble-release deploy-all uninstall-all
default:
@ADB='${ADB}' ./scripts/assemble_and_maybe_deploy
all: clean assemble-all deploy-all
force: assemble uninstall
adb install -r build/outputs/apk/${flavor_lower}/debug/cht-gateway-SNAPSHOT-${flavor_lower}-debug.apk
assemble:
${GRADLE} ${GRADLE_OPTS} assemble${flavor}Debug
assemble-all:
${GRADLE} ${GRADLE_OPTS} assembleDebug
assemble-release:
${GRADLE} ${GRADLE_OPTS} assembleRelease
clean:
rm -rf src/main/assets/
rm -rf build/
lint:
${GRADLE} ${GRADLE_OPTS} androidCheckstyle
test: lint
IS_GENERIC_FLAVOUR=false \
IS_MEDIC_FLAVOUR=true \
${GRADLE} ${GRADLE_OPTS} test${flavor}DebugUnitTest
test-ui: assemble
${GRADLE} ${GRADLE_OPTS} connectedGenericDebugAndroidTest
emulator:
nohup ${EMULATOR} -avd test -wipe-data > emulator.log 2>&1 &
${ADB} wait-for-device
logs:
${ADB} logcat CHTGateway:V AndroidRuntime:E '*:S' | tee android.log
deploy:
${GRADLE} ${GRADLE_OPTS} install${flavor}Debug
deploy-all: assemble-all
find build/outputs/apk -name \*-debug.apk | \
xargs -n1 ${ADB} install -r
uninstall:
adb uninstall medic.gateway.alert
uninstall-all: uninstall
adb uninstall medic.gateway.alert.generic
kill:
pkill -9 emulator64-arm
.PHONY: demo-server
demo-server:
npm install && npm start
.PHONY: avd changelog stats ci
avd:
nohup android avd > /dev/null &
stats:
./scripts/project_stats
changelog:
./scripts/changelog
ci: stats
IS_GENERIC_FLAVOUR=false \
IS_MEDIC_FLAVOUR=true \
${GRADLE} ${GRADLE_OPTS} --stacktrace androidCheckstyle testMedicDebugUnitTest assemble
${GRADLE} ${GRADLE_OPTS} connectedCheck