Personal fork of 8VIM
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
8VIM/.travis.yml

28 lines
615 B

language: android
jdk: oraclejdk8
os: linux
dist: xenial
env:
global:
- ANDROID_API_LEVEL=30
- ANDROID_BUILD_TOOLS_VERSION=29.0.3
install:
- echo yes | sdkmanager "tools"
- echo yes | sdkmanager "platforms;android-${ANDROID_API_LEVEL}"
android:
components:
- tools
- platform-tools
- tools
- build-tools-$ANDROID_BUILD_TOOLS_VERSION
- android-$ANDROID_API_LEVEL
# Additional components
- extra-android-m2repository
before_script:
- chmod +x gradlew
script:
- ./gradlew clean assembleDebug
- ./gradlew clean lint