diff options
author | Konstantin Käfer <mail@kkaefer.com> | 2018-12-14 15:53:13 +0100 |
---|---|---|
committer | Konstantin Käfer <mail@kkaefer.com> | 2019-01-09 10:26:53 +0100 |
commit | 9acdd75d04f335313a6c491599b5c7559d6458c7 (patch) | |
tree | f888489fd4087f68e7b3be30f8c6cef19a53634f /circle.yml | |
parent | f867c5784ccc63d419ebf8ee3dcef9fa4b610704 (diff) | |
download | qtlocation-mapboxgl-9acdd75d04f335313a6c491599b5c7559d6458c7.tar.gz |
[build] add a Buck build and BUCK file for Android
Diffstat (limited to 'circle.yml')
-rw-r--r-- | circle.yml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/circle.yml b/circle.yml index 95bcc8dc78..b1cb4eed11 100644 --- a/circle.yml +++ b/circle.yml @@ -9,6 +9,7 @@ workflows: filters: branches: ignore: master + - android-debug-arm-v7-buck - android-arm-v7-template: name: android-debug-arm-v7 - android-arm-v7-template: @@ -650,6 +651,26 @@ jobs: if [[ $CIRCLE_BRANCH == master ]] || [[ $CIRCLE_BRANCH == release-* ]] || [[ $CIRCLE_TAG == android-v* ]]; then make run-android-upload-archives fi +# ------------------------------------------------------------------------------ + android-debug-arm-v7-buck: + docker: + - image: mbgl/android-ndk-r17c-buck:07c5ef2e71 + working_directory: /src + environment: + LIBSYSCONFCPUS: 2 + JOBS: 2 + BUILDTYPE: Debug + ANDROID_NDK: /android/sdk/ndk-bundle + steps: + - checkout + - run: + name: Checkout submodules + command: git submodule update --init + - run: + name: Build Android library + command: | + cd misc/buck + buck build mapbox-gl-native:android-core # ------------------------------------------------------------------------------ node-clang39-release: |