-
Notifications
You must be signed in to change notification settings - Fork 7
/
.travis.yml
34 lines (34 loc) · 999 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
language: node_js
matrix:
include:
# Test on Ubuntu Xenial
- dist: xenial
node_js: "10"
# Test on Ubuntu Xenial
- dist: xenial
node_js: "12"
# Test Node.js master nightly build
- node_js: "node"
sudo: required
dist: xenial
install:
- npm install --nodedir=$(dirname $(dirname $(which node)))/
env:
- NVM_NODEJS_ORG_MIRROR=https://nodejs.org/download/nightly
- NODEJS_ORG_MIRROR=https://nodejs.org/download/nightly
# Test Node.js v8-canary nightly build
- node_js: "node"
sudo: required
dist: xenial
before_install:
- sudo apt-get -qq update
- sudo apt-get install lldb-3.9 liblldb-3.9-dev -y
install:
- npm install --nodedir=$(dirname $(dirname $(which node)))/
env:
- NVM_NODEJS_ORG_MIRROR=https://nodejs.org/download/v8-canary
- NODEJS_ORG_MIRROR=https://nodejs.org/download/v8-canary
branches:
only:
- master
script: npm test