Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
travis: test node 4, 6, 8, 9 with lldb-3.9
  • Loading branch information
joyeecheung committed Nov 28, 2017
commit 2155954ae65fb6c5f3d04073ff19bf3a1c09ffae
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