-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
.travis.yml
106 lines (101 loc) · 2.93 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
android:
components:
- tools
- platform-tools
- android-28
- android-21
- build-tools-28.0.2
- extra-android-m2repository
- sys-img-armeabi-v7a-android-21
install:
- echo no | npm install -g nativescript
- tns usage-reporting disable
- tns error-reporting disable
- echo no | npm install -g ios-sim
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
cache:
directories:
- .nvm
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
matrix:
include:
- stage: "Lint"
language: node_js
os: linux
node_js: "10"
script: cd src && npm run ci.tslint && cd ../demo && npm run ci.tslint
- stage: "WebPack"
os: osx
env:
- BuildiOS="12"
- Xcode="10"
osx_image: xcode10
language: node_js
node_js: "10"
jdk: oraclejdk8
before_install:
- pip install --upgrade pip
- pip install --user --upgrade matplotlib
- pip install six
script: cd demo && npm run build.plugin && npm i && tns build ios --bundle --env.uglify
- language: android
os: linux
env:
- BuildAndroid="28"
jdk: oraclejdk8
before_install: nvm install 10
script: cd demo && npm run build.plugin && npm i && tns build android --bundle --env.uglify
- stage: "Tests"
os: osx
env:
- iOS="UnitTests"
osx_image: xcode10
language: node_js
node_js: "10"
jdk: oraclejdk8
before_script:
- ios-sim start --devicetypeid "iPhone-8-Plus, 12.0"
before_install:
- pip install --upgrade pip
- pip install --user --upgrade matplotlib
- pip install six
script:
- cd src && npm i && npm run tsc && npm run tslint && cd ../demo && tns build ios && tns test ios --justlaunch
- language: android
os: linux
env:
- Android="UnitTests"
jdk: oraclejdk8
before_install: nvm install 10
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
script:
- cd src && npm i && npm run tsc && npm run tslint && cd ../demo && tns build android
- travis_wait travis_retry tns test android --justlaunch
- stage: "Build"
env:
- BuildAndroid="28"
language: android
os: linux
jdk: oraclejdk8
before_install: nvm install 10
script:
- cd src && npm i && npm run tsc && cd ../demo && tns build android
- os: osx
env:
- BuildiOS="12"
- Xcode="10"
osx_image: xcode10
language: node_js
node_js: "10"
jdk: oraclejdk8
before_install:
- pip install --upgrade pip
- pip install --user --upgrade matplotlib
- pip install six
script:
- cd src && npm i && npm run tsc && cd ../demo && tns build ios