-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
57 lines (52 loc) · 1.19 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
env:
jobs:
fast_finish: true
allow_failures:
- os: osx
include:
- language: node_js
node_js: 10
script:
- npm run check
- os: linux
language: android
jdk: oraclejdk8
android:
components:
- platform-tools
- tools
- build-tools-28.0.3
- android-21
- android-28
- sys-img-armeabi-v7a-android-21
- extra-android-m2repository
- extra-google-m2repository
- extra-google-google_play_services
env:
- JOB_NAME=ANDROID
before_install:
- nvm install 10
- node --version
install:
- npm install
- npm run link
script:
- npm run check
- echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf
- sudo sysctl -p
- npm run build:android
- os: osx
language: objective-c
osx_image: xcode10.1
env:
- JOB_NAME=IOS
before_install:
- nvm install 10
- node --version
install:
- npm install
- npm run link
- (cd ios && pod install)
script:
- npm run tsc
- npm run build:ios