Skip to content

Commit

Permalink
fix test files
Browse files Browse the repository at this point in the history
Fix missing `pip` in macOS builds
Add new builds to the matrix

PR-URL: #257
Reviewed-By: Michael Dawson <[email protected]>
  • Loading branch information
kfarnung authored and mhdawson committed Jun 14, 2018
1 parent 9ab6607 commit 12b2cde
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
8 changes: 6 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,15 @@ os:
env:
global:
# https://github.com/jasongin/nvs/blob/master/doc/CI.md
- NVS_VERSION=1.2.0
- NVS_VERSION=1.4.2
matrix:
- NODEJS_VERSION=node/4
- NODEJS_VERSION=node/6
- NODEJS_VERSION=node/8
- NODEJS_VERSION=node/9
- NODEJS_VERSION=node/10
- NODEJS_VERSION=chakracore/8
- NODEJS_VERSION=chakracore/10
- NODEJS_VERSION=nightly
- NODEJS_VERSION=chakracore-nightly
matrix:
Expand All @@ -35,7 +39,7 @@ addons:
- g++-4.9
before_install:
# coveralls
- pip install --user cpp-coveralls
- pip2 install --user cpp-coveralls
# compilers
- if [ "$CXX" = "g++" -a "$TRAVIS_OS_NAME" = "linux" ]; then export CXX="g++-4.9" CC="gcc-4.9" AR="gcc-ar-4.9" RANLIB="gcc-ranlib-4.9" NM="gcc-nm-4.9" ; fi
- if [ "$CXX" = "clang++" ]; then export NPMOPT=--clang=1 ; fi
Expand Down
6 changes: 5 additions & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
environment:
# https://github.com/jasongin/nvs/blob/master/doc/CI.md
NVS_VERSION: 1.2.0
NVS_VERSION: 1.4.2
fast_finish: true
matrix:
- NODEJS_VERSION: node/4
- NODEJS_VERSION: node/6
- NODEJS_VERSION: node/8
- NODEJS_VERSION: node/9
- NODEJS_VERSION: node/10
- NODEJS_VERSION: chakracore/8
- NODEJS_VERSION: chakracore/10
- NODEJS_VERSION: nightly
- NODEJS_VERSION: chakracore-nightly

Expand Down

0 comments on commit 12b2cde

Please sign in to comment.