Skip to content

Commit 61735a7

Browse files
committed
add node-chakracore to Travis CI
1 parent 7362f57 commit 61735a7

File tree

1 file changed

+32
-11
lines changed

1 file changed

+32
-11
lines changed

.travis.yml

+32-11
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,35 @@
1-
language: node_js
2-
node_js:
3-
- "0.10"
4-
- "0.12"
5-
- "4"
6-
- "6"
7-
- "8"
8-
env:
9-
- UGLIFYJS_TEST_ALL=1
1+
addons:
2+
apt:
3+
sources:
4+
- ubuntu-toolchain-r-test
5+
packages:
6+
- libstdc++-4.9-dev
7+
cache:
8+
directories: tmp
9+
language: generic
1010
matrix:
1111
fast_finish: true
1212
sudo: false
13-
cache:
14-
directories: tmp
13+
env:
14+
global:
15+
- UGLIFYJS_TEST_ALL=1
16+
matrix:
17+
- NODEJS_VER=chakracore/latest
18+
- NODEJS_VER=node/0.10
19+
- NODEJS_VER=node/0.12
20+
- NODEJS_VER=node/4
21+
- NODEJS_VER=node/6
22+
- NODEJS_VER=node/8
23+
- NODEJS_VER=node/latest
24+
before_install:
25+
- git clone --branch v1.4.2 --depth 1 https://github.com/jasongin/nvs.git ~/.nvs
26+
- . ~/.nvs/nvs.sh
27+
- nvs --version
28+
install:
29+
- nvs add $NODEJS_VER
30+
- nvs use $NODEJS_VER
31+
- node --version
32+
- npm --version --no-update-notifier
33+
- npm install --no-optional --no-save --no-update-notifier
34+
script:
35+
- npm test

0 commit comments

Comments
 (0)