diff options
| author | Ryan Dahl <ry@tinyclouds.org> | 2018-10-11 19:32:57 -0400 |
|---|---|---|
| committer | Ryan Dahl <ry@tinyclouds.org> | 2018-10-11 20:29:43 -0400 |
| commit | fda7aaa10e173bfa8ef864a74a274af69fc01cca (patch) | |
| tree | 042dc28dea4410c2c78e03e88c8ef36642928ee3 | |
| parent | 4f4075307d932d2be0d988f7edae6cabc38527ea (diff) | |
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.
| -rw-r--r-- | .travis.yml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index e90e3ebe4..a30bb170d 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 |
