rdzwx-go/.travis.yml

37 wiersze
585 B
YAML
Czysty Zwykły widok Historia

2021-05-29 15:50:41 +00:00
os:
- osx
- android
jobs:
include:
- language: android
dist: bionic
jdk: oraclejdk8
android:
components:
- tools
- android-29
- build-tools-29.0.3
before_script:
- echo "Before"
- apt install nodejs
- npm install -g cordova
- cordova platfrom add android
- cordova build
script:
- echo "script"
before_install:
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then
echo "TEST OSX";
fi
- if [ "$TRAVIS_OS_NAME" = "android" ]; then
echo "TEST Android"
fi
-