habitica-android/.travis.yml
Leland Wu a95be4a755
get as many tests to work as possible and fix travis (#1291)
modify a subscription plan test

switch commented test

Increase mockito version

add a clean to yaml file

edit yaml

modify versionings

update yaml

add build to script

try something in build gradle

edit travis

travis

try something with apple client id

yaml

put testProdDebugUnitTest script back in yaml

try diff distribution

try xenial

put apple ath client id back

edit yaml

add apple ath client id

add apple id in example as well

put buildConfig import back

change sudo apt get

edit sudo apt commands

move commands

edit travis

mongodb org

travis

Fix unit tests and travis

add mongo service

travis file

only run one test suite on travis

only test for testProdDebugUnitTest
2020-04-13 12:02:48 +02:00

68 lines
2.6 KiB
YAML

language: android
dist: trusty
jdk: oraclejdk8
sudo: required
services:
- mongodb
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
before_install:
- $CXX --version
- export JAVA7_HOME=/usr/lib/jvm/java-7-oracle
- export JAVA8_HOME=/usr/lib/jvm/java-8-oracle
- if [ $REQUIRES_SERVER = "true" ]; then nvm install 6.9.3; fi
- if [ $REQUIRES_SERVER = "true" ]; then nvm use 6.9.3; fi
- if [ $REQUIRES_SERVER = "true" ]; then npm i -g npm@6; fi
- if [ $REQUIRES_SERVER = "true" ]; then sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 7F0CEB10; fi
- if [ $REQUIRES_SERVER = "true" ]; then echo 'deb http://downloads-distro.mongodb.org/repo/ubuntu-upstart dist 10gen' | sudo tee /etc/apt/sources.list.d/mongodb.list; fi
- if [ $REQUIRES_SERVER = "true" ]; then sudo apt-get update || true; fi
- if [ $REQUIRES_SERVER = "true" ]; then sudo apt-get -y install mongodb; fi
- if [ $REQUIRES_SERVER = "true" ]; then git clone https://github.com/HabitRPG/habitica.git; fi
- if [ $REQUIRES_SERVER = "true" ]; then until nc -z localhost 27017; do echo Waiting for MongoDB; sleep 2; done; fi
- if [ $REQUIRES_SERVER = "true" ]; then cd habitica && cp config.json.example config.json && npm install; fi
- if [ $REQUIRES_SERVER = "true" ]; then npm start; fi &
- if [ $REQUIRES_SERVER = "true" ]; then until nc -z localhost 3000; do echo Waiting for Habitica Server; sleep 2; done; fi
- if [ $REQUIRES_SERVER = "true" ]; then cd -; fi
android:
components:
# Uncomment the lines below if you want to
# use the latest revision of Android SDK Tools
# - platform-tools
- tools
# The BuildTools version used by your project
- build-tools-28.0.3
# The SDK version used to compile your project
- android-29
# Additional components
- extra-google-google_play_services
- extra-google-m2repository
- extra-android-m2repository
# Specify at least one system image,
# if you need to run emulator(s) during your tests
#- sys-img-armeabi-v7a-android-19
#- sys-img-x86-android-17
licenses:
- 'android-sdk-preview-license-52d11cd2'
- 'android-sdk-license-.+'
- 'google-gdk-license-.+'
before_script:
- cp habitica.properties.travis habitica.properties
- cp habitica.resources.example habitica.resources
- cp Habitica/google-services.json.example Habitica/google-services.json
script:
- ./gradlew $TEST2
env:
global:
- CXX=g++-4.8
- DISABLE_REQUEST_LOGGING=true
matrix:
- TEST1="assembleDebug -PdisablePreDex"
- TEST2="testProdDebugUnitTest -PdisablePreDex --stacktrace" REQUIRES_SERVER=false