From 62355bc860ce7e1eb12e07b8c98ec5fb79740aa0 Mon Sep 17 00:00:00 2001 From: Tobrun Date: Fri, 7 Apr 2017 19:01:22 +0200 Subject: [android] - disable building x86-64 on CI for snapshot builds (#8679) * [android] - disable building x86-64 on CI for scheduled workflow. Broken with NDK14. * corrected abis flag for gradle invocation * add mips 64 --- platform/android/bitrise.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/platform/android/bitrise.yml b/platform/android/bitrise.yml index 972182eac3..dcd4d4fb50 100644 --- a/platform/android/bitrise.yml +++ b/platform/android/bitrise.yml @@ -142,7 +142,13 @@ workflows: - content: |- #!/bin/bash echo "Compile libmapbox-gl.so for all supportd abi's:" - export BUILDTYPE=Release make apackage + BUILDTYPE=Release make android-lib-arm-v5 + BUILDTYPE=Release make android-lib-arm-v7 + BUILDTYPE=Release make android-lib-arm-v8 + BUILDTYPE=Release make android-lib-x86 + BUILDTYPE=Release make android-lib-mips + BUILDTYPE=Release make android-lib-mips-64 + cd platform/android && ./gradlew -Pmapbox.abis=armeabi-v7a MapboxGLAndroidSDK:assembleRelease - script: title: Publish to maven inputs: -- cgit v1.2.1