Skip to content

Commit 2e4121e

Browse files
committed
travis: test node 4, 6, 8, 9 with lldb-3.9
1 parent 4285d30 commit 2e4121e

File tree

2 files changed

+12
-7
lines changed

2 files changed

+12
-7
lines changed

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ sudo: required
33
dist: trusty
44
before_install:
55
- sudo apt-get -qq update
6-
- sudo apt-get install lldb-3.6 lldb-3.6-dev -y
6+
- sudo apt-get install lldb-3.9 liblldb-3.9-dev -y
77
- git clone https://chromium.googlesource.com/external/gyp.git tools/gyp
88
node_js:
99
- "4"
10-
- "5"
1110
- "6"
12-
- "7"
11+
- "8"
12+
- "9"
1313
branches:
1414
only:
1515
- master

Makefile

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,14 @@ uninstall-linux:
1919
format:
2020
clang-format -i src/*
2121

22-
_travis:
23-
./gyp_llnode -Dlldb_dir=/usr/lib/llvm-3.6/ -f make
24-
make -C out/
25-
TEST_LLDB_BINARY=`which lldb-3.6` npm test
22+
configure: scripts/configure.js
23+
node scripts/configure.js
24+
25+
plugin: configure
26+
./gyp_llnode
27+
$(MAKE) -C out/
28+
29+
_travis: plugin
30+
TEST_LLDB_BINARY=`which lldb-3.9` npm test
2631

2732
.PHONY: all

0 commit comments

Comments
 (0)