This repository was archived by the owner on Aug 8, 2023. It is now read-only.
File tree 2 files changed +8
-2
lines changed
2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -424,9 +424,11 @@ build/android-$1/$(BUILDTYPE)/Makefile: build/android-$1/$(BUILDTYPE)/toolchain.
424
424
-DCMAKE_EXPORT_COMPILE_COMMANDS=ON \
425
425
-DMBGL_PLATFORM=android
426
426
427
+ .PHONY: android-lib-$1
427
428
android-lib-$1: build/android-$1/$(BUILDTYPE ) /Makefile
428
429
$(MAKE ) -j$(JOBS ) -C build/android-$1/$(BUILDTYPE ) all
429
430
431
+ .PHONY: android-$1
430
432
android-$1: android-lib-$1
431
433
cd platform/android && ./gradlew --parallel --max-workers=$(JOBS ) assemble$(BUILDTYPE )
432
434
@@ -435,16 +437,20 @@ endef
435
437
436
438
$(foreach abi,$(ANDROID_ABIS),$(eval $(call ANDROID_RULES,$(abi))))
437
439
440
+ .PHONY : android
438
441
android : android-arm-v7
439
442
440
- test-android :
443
+ .PHONY : android-test
444
+ android-test :
441
445
cd platform/android && ./gradlew testReleaseUnitTest --continue
442
446
447
+ .PHONY : apackage
443
448
apackage :
444
449
cd platform/android && ./gradlew --parallel-threads=$(JOBS ) assemble$(BUILDTYPE )
445
450
446
451
# ### Miscellaneous targets #####################################################
447
452
453
+ .PHONY : style-code
448
454
style-code :
449
455
node scripts/generate-style-code.js
450
456
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ workflows:
34
34
sudo apt-get install -y pkg-config nodejs cmake
35
35
export BUILDTYPE=Release
36
36
make android
37
- make test- android
37
+ make android-test
38
38
- slack :
39
39
title : Post to Slack
40
40
run_if : ' {{enveq "SKIPCI" "false"}}'
You can’t perform that action at this time.
0 commit comments