From 8eec2549a49bb8adfec54e372ed98166dc0583b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABl=20M=C3=A9tais?= Date: Sat, 26 Mar 2016 12:00:11 +0200 Subject: [PATCH] Trying to fix Travis build for Node 5.* --- .travis.yml | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 10a882e..b29d5f5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,10 +1,18 @@ language: node_js sudo: false node_js: - - "5.8" - - "0.12" + - "5.8" + - "0.12" +env: + - CXX=g++-4.8 +addons: + apt: + sources: + - ubuntu-toolchain-r-test + packages: + - g++-4.8 before_install: - - "npm install -g npm" - - "npm install -g grunt-cli" + - "npm install -g npm" + - "npm install -g grunt-cli" install: - - "npm install" \ No newline at end of file + - "npm install" \ No newline at end of file