From fda7aaa10e173bfa8ef864a74a274af69fc01cca Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Thu, 11 Oct 2018 19:32:57 -0400 Subject: [PATCH] Use node v8 on Travis. Apparently OSX defaults to v6 and Linux to v8. v6 does not properly run //js/testing due to async usage. --- .travis.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.travis.yml b/.travis.yml index e90e3ebe48..a30bb170da 100644 --- a/.travis.yml +++ b/.travis.yml @@ -30,6 +30,9 @@ cache: - third_party/v8/build/linux/debian_sid_amd64-sysroot/ - third_party/v8/third_party/llvm-build/ install: +- nvm install v8 +- nvm use --delete-prefix v8 +- node -v - |- # OS X: install a private copy of homebrew. if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then