summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorPeter Dave Hello2017-10-28 03:01:36 +0800
committerPeter Dave Hello2017-10-29 23:01:44 +0800
commitcae9bb2e7df60ab30b21c2ab4886754ee30f2c3f (patch)
tree8dc79c7c8e23fea25fcabb9820c122463233f66b /.travis.yml
parentabbc43f9b67bb7fa0b6dad5c05268800a192f388 (diff)
Use matrix(jobs) in .travis.yml
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml25
1 files changed, 17 insertions, 8 deletions
diff --git a/.travis.yml b/.travis.yml
index 61ced7a9..36e09f04 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,12 +1,21 @@
language: node_js
dist: trusty
-node_js:
- - 6
- - 7
-env:
- - CXX=g++-4.8
cache: yarn
+env:
+ global:
+ - CXX=g++-4.8
-before_install:
- - curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.1.0
- - export PATH="$HOME/.yarn/bin:$PATH"
+jobs:
+ include:
+ - env: task=npm-test
+ node_js:
+ - 6
+ before_install:
+ - curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.1.0
+ - export PATH="$HOME/.yarn/bin:$PATH"
+ - env: task=npm-test
+ node_js:
+ - 7
+ before_install:
+ - curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.1.0
+ - export PATH="$HOME/.yarn/bin:$PATH"