Skip to content

Commit

Permalink
travis: test node 4, 6, 8, 9 with lldb-3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
joyeecheung committed Nov 28, 2017
1 parent 4285d30 commit 2e4121e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ sudo: required
dist: trusty
before_install:
- sudo apt-get -qq update
- sudo apt-get install lldb-3.6 lldb-3.6-dev -y
- sudo apt-get install lldb-3.9 liblldb-3.9-dev -y
- git clone https://chromium.googlesource.com/external/gyp.git tools/gyp
node_js:
- "4"
- "5"
- "6"
- "7"
- "8"
- "9"
branches:
only:
- master
Expand Down
13 changes: 9 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,14 @@ uninstall-linux:
format:
clang-format -i src/*

_travis:
./gyp_llnode -Dlldb_dir=/usr/lib/llvm-3.6/ -f make
make -C out/
TEST_LLDB_BINARY=`which lldb-3.6` npm test
configure: scripts/configure.js
node scripts/configure.js

plugin: configure
./gyp_llnode
$(MAKE) -C out/

_travis: plugin
TEST_LLDB_BINARY=`which lldb-3.9` npm test

.PHONY: all

0 comments on commit 2e4121e

Please sign in to comment.