-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
57 lines (46 loc) · 1.81 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
notifications:
slack:
secure: RPpLR38m6W0SYjJdPyDth5yUFfBwMt8B/1CsptyxZLQJRtUlTKKJb4SBwdsO58qmtVsH+B09Nd46haiMgUk+LjvRlZt8nHzOWiz+54t0I5x8YZnHxqAan6HSi9HW1yZAWfFUXmGtXYJrM/s9FI+E/Fcv20DoR5RFzNjV0fHgsXmvHSwycLAtvds6Y/GNXuSqJpY52S6xYrUqSw17+bOKb8+F8uZhLrg0ffVkuJdTvw7MOVq4ATstdrl+BMeIpGBA9/XQsZ2eRvk2ftUUMTOoXRPiIfEhSoF9Cbgew2FRt28p9w2bcbmQX0XAsI7Px5UupZgr0QBLiK9LKSLeGZbRHIkObT+vLLc0WvEPedZaEBHDJn/e4uY96/fnjZKqcE/2Xwn30ZqhqzMP/eVZClm/OtB5EFbLRW/QCzEc/QN/IDPgRmdcsXACjDZacALbXR81TFih+udRabvLtc56gdkp/0wb0qGD4aF/WdB+I+Y4j6VtCBh/ETX31Ea+pR9LhHto0HZMUG0hPDqSztHmv5gtTmtYu+9Bm+puqP53eJ4cyATlX3Zo3MxWWaW92iCZUDNHMOyjdhtajoxVtMR/hbUO1EDZB+bAFUDKQBIuwmYZhKw4Y4MhQGEH03QKWlmBRDqM2JaE/wO2rt79ew3JQHNhBBMTuW1djtTPJj3MrlNK2Bk=
cache:
directories:
- node_modules
addons:
sauce_connect: true
matrix:
include:
- name: "iOS Build & Test"
language: objective-c
sudo: false
os: osx
osx_image: xcode10.1
before_install:
- export LANG=en_US.UTF-8
install:
- npm install
script:
- node_modules/.bin/cordova prepare
- node_modules/.bin/cordova build ios
- scripts/upload-artifacts.sh --ios
- scripts/test.sh --ios --emulator
- name: "Android Build & Test"
language: android
sudo : required
android:
components:
- platform-tools
- build-tools-28.0.3
- android-27
- extra-android-support
- extra-android-m2repository
- extra-google-m2repository
before_install:
- export LANG=en_US.UTF-8
- curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
- sudo apt-get install -y nodejs
install:
- npm install
script:
- node_modules/.bin/cordova prepare
- node_modules/.bin/cordova build android
- scripts/upload-artifacts.sh --android
- scripts/test.sh --android --emulator