forked from curiousdustin/react-native-iap
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
37 lines (33 loc) · 774 Bytes
/
.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
matrix:
# This causes the build to complete immediately upon first failure or once
# required jobs are green.
fast_finish: true
# Building APK/IPA takes a long time; do not wait for them to finish.
# allow_failures:
# - env: JOB=APK
# - env: JOB=IPA
include:
# Runs unit tests without emulators.
- env: JOB=PR
sudo: false
language: node_js
node_js:
- "stable"
cache:
directories:
- node_modules
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
install:
- yarn install
- cd IapExample
- yarn install
- cd ..
script:
- yarn validate