diff options
author | Alon Zakai <alonzakai@gmail.com> | 2016-01-15 20:29:37 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2016-01-17 11:57:10 -0800 |
commit | ed22b7970e6a63112337c8196820110b3ed78f59 (patch) | |
tree | 3f9a1752eb038c785bf7d7a2ec7a9218ef6e7a17 | |
parent | 3a51b0a4553b1d98ecec232593dc02d5db8e7259 (diff) | |
download | binaryen-ed22b7970e6a63112337c8196820110b3ed78f59.tar.gz binaryen-ed22b7970e6a63112337c8196820110b3ed78f59.tar.bz2 binaryen-ed22b7970e6a63112337c8196820110b3ed78f59.zip |
try again to install node on travis
-rw-r--r-- | .travis.yml | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml index 4016699e4..222100a72 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,8 +2,6 @@ sudo: false language: cpp python: - "2.7" -node_js: - - "stable" matrix: include: @@ -13,7 +11,7 @@ matrix: addons: &clang36 apt: sources: ['ubuntu-toolchain-r-test', 'llvm-toolchain-precise-3.6'] - packages: ['cmake', 'clang-3.6'] + packages: ['cmake', 'nodejs', 'clang-3.6'] - env: COMPILER_VERSION=3.6 COMPILER_FLAGS="-fsanitize=undefined -fsanitize-blacklist=`pwd`/ubsan.blacklist" compiler: clang @@ -32,7 +30,7 @@ matrix: addons: &gcc5 apt: sources: ['ubuntu-toolchain-r-test'] - packages: ['cmake', 'g++-5'] + packages: ['cmake', 'nodejs', 'g++-5'] allow_failures: - env: COMPILER_VERSION=3.6 COMPILER_FLAGS="-fsanitize=address" |