-
Notifications
You must be signed in to change notification settings - Fork 57
/
.travis.yml
57 lines (53 loc) · 1.29 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
language: android
dist: precise
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.9
android:
components:
# use the latest revision of Android SDK Tools
- tools
- platform-tools
- tools
- build-tools-25.0.1
- android-21
# Additional components
- extra-android-support
- extra-google-google_play_services
- extra-google-m2repository
- extra-android-m2repository
- addon-google_apis-google-21
# Specify at least one system image,
# if you need to run emulator(s) during your tests
- sys-img-armeabi-v7a-android-21
jdk:
- oraclejdk8
env:
global:
- CC=gcc-4.9 CXX=g++-4.9
- _FORCE_LOGS=1
matrix:
- TEST=unit
- TEST=functional
install:
- java -version
# need to also set up Node environment
- rm -rf ~/.nvm
- git clone https://github.com/creationix/nvm.git ~/.nvm
- source ~/.nvm/nvm.sh
- nvm install 6
- node --version
- npm install
- npm install -g gulp
- npm install -g mocha
- echo no | android create avd --force -n test -t android-21 --abi armeabi-v7a
- emulator -avd test -no-audio -no-window &
- android-wait-for-emulator
- adb shell input keyevent 82 &
script:
- DEVICE=android mocha -t 900000 -R spec build/test/$TEST --exit
after_success:
- gulp coveralls