forked from EddyVerbruggen/nativescript-localize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
121 lines (118 loc) · 2.78 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
android:
components:
- tools
- platform-tools
- build-tools-28.0.3
- android-28
- extra-android-m2repository
- sys-img-armeabi-v7a-android-21
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
- cd src
- npm i
- npm run compile
- cd ../demo
- npm i
- cd ../demo-angular
- npm i
- cd ../demo-vue
- npm i
- cd ..
matrix:
include:
- stage: "Lint"
language: node_js
os: linux
node_js: "8"
script:
- cd src
- npm run tslint
- cd ../demo-angular
- npm run tslint
- stage: "Build, webpack and test"
language: android
os: linux
jdk: oraclejdk8
env:
- BuildAndroid="28"
before_install:
- nvm install 8
script:
- cd demo
- tns build android
- cd ../demo-angular
- tns build android
- language: android
os: linux
jdk: oraclejdk8
env:
- WebpackAndroid="28"
before_install:
- nvm install 8
script:
- cd demo
- tns build android --bundle --env.uglify --env.snapshot
- cd ../demo-angular
- tns build android --bundle --env.uglify --env.snapshot --env.aot
- cd ../demo-vue
- tns build android --bundle --env.uglify --env.snapshot
- language: android
os: linux
dist: precise
sudo: required
jdk: oraclejdk8
env:
- TestAndroid="28"
before_install:
- nvm install 8
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
- adb shell input keyevent 82 &
script:
- cd demo
- tns test android --emulator --justlaunch
- os: osx
osx_image: xcode10.0
language: node_js
node_js: "8"
jdk: oraclejdk8
env:
- BuildiOS="12"
- Xcode="10.0"
script:
- cd demo
- tns build ios
- cd ../demo-angular
- tns build ios
- os: osx
osx_image: xcode10.0
language: node_js
node_js: "8"
jdk: oraclejdk8
env:
- WebpackiOS="12"
script:
- cd demo
- tns build ios --bundle --env.uglify
- cd ../demo-angular
- tns build ios --bundle --env.uglify --env.aot
- cd ../demo-vue
- tns build ios --bundle --env.uglify
- os: osx
osx_image: xcode10.0
language: node_js
node_js: "8"
jdk: oraclejdk8
env:
- TestiOS="12"
- Xcode="10.0"
script:
- cd demo
- tns test ios --emulator --justlaunch