mirror of
https://github.com/apache/cordova-android.git
synced 2025-01-19 07:02:51 +08:00
5889001465
* (android) increased default target sdk to 29 * Updated travis and appveyor to use build tools/api level 29 * Fixed two other files that was missing the API 29 update
47 lines
892 B
YAML
47 lines
892 B
YAML
sudo: false
|
|
|
|
# NOTE: dist is added here to ensure that Travis CI works consistently
|
|
# on Node.js 12. It is desired to remove it once this issue is resolved
|
|
# or otherwise goes away.
|
|
dist: trusty
|
|
|
|
env:
|
|
global:
|
|
- ANDROID_API_LEVEL=29
|
|
- ANDROID_BUILD_TOOLS_VERSION=29.0.2
|
|
- TERM=dumb # Keep gradle from crapping all over the log
|
|
matrix:
|
|
- nodejs_version=10
|
|
- nodejs_version=12
|
|
|
|
language: android
|
|
jdk:
|
|
- oraclejdk8
|
|
|
|
android:
|
|
components:
|
|
- tools
|
|
- build-tools-$ANDROID_BUILD_TOOLS_VERSION
|
|
- android-$ANDROID_API_LEVEL
|
|
licenses:
|
|
- 'android-sdk-preview-license-.+'
|
|
- 'android-sdk-license-.+'
|
|
- 'google-gdk-license-.+'
|
|
|
|
before_install:
|
|
- nvm install $nodejs_version
|
|
- node --version
|
|
- npm --version
|
|
- gradle --version
|
|
|
|
install:
|
|
- npm install
|
|
- npm install -g codecov
|
|
|
|
script:
|
|
- npm test
|
|
- npm run cover
|
|
|
|
after_script:
|
|
- codecov
|