blob: 474af6267e4ee9f4fb77d24fa50241f2461f9c56 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
language: android
git:
depth: 1 # avoid cloning cmocka of openvpn
jdk: oraclejdk8
android:
components:
- tools
- android-26
- build-tools
- build-tools-26.0.0
- ndk
- extra-android-m2repository
- platform-tools
licenses:
- '.+'
install:
sdkmanager ndk-bundle
script:
- cd main && ./misc/build-native.sh USE_BREAKPAD=1 -j8; cd ..
- ./gradlew build connectedCheck
|