forked from Notalib/nativescript-accessibility-ext
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
72 lines (67 loc) · 1.79 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
matrix:
include:
- stage: "Lint"
language: node_js
os: linux
node_js: "8"
script: cd src && npm run ci.lint
- stage: "Build /w Webpack"
os: osx
env:
- Platform="iOS"
osx_image: xcode10.2
language: node_js
node_js: "8"
jdk: oraclejdk8
script:
- cd src && npm run ci.build
- cd ../demo
- npm i && tns build ios --bundle --env.aot --env.uglify
- cd ../demo-ng
- npm i && tns build ios --bundle --env.aot --env.uglify
- language: android
os: linux
env:
- Platform="Android"
jdk: oraclejdk8
before_install: nvm install 8
script:
- cd src && npm run ci.build
- cd ../demo
- tns build android --bundle --env.aot --env.uglify
- cd ../demo-ng
- tns build android --bundle --env.aot --env.uglify
# TODO: E2E tests
# - os: linux
# language: android
# dist: precise
# sudo: required
# jdk: oraclejdk8
# before_script:
# - echo no | android create avd --force -n test -t android-21 -b armeabi-v7a
# - emulator -avd test -no-audio -no-window &
# - android-wait-for-emulator
# before_install:
# - nvm install 6
# script: cd src && npm run test.android
android:
components:
- tools
- platform-tools
- build-tools-28.0.3
- android-28
- extra-android-m2repository
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
cache:
directories:
- .nvm
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
before_install:
- sudo pip install --upgrade pip
- sudo pip install six
install:
- echo no | npm install -g nativescript
- tns usage-reporting disable
- tns error-reporting disable