From f1f0cb7aef2596082badc3c386817311285d6584 Mon Sep 17 00:00:00 2001 From: Peter Dave Hello Date: Tue, 18 Apr 2017 13:13:06 +0800 Subject: [PATCH] Move to Ubuntu Trusty on Travis CI and remove apt add-on Two reasons here: 1) Ubuntu Precise is reaching EOL, though Travis CI may take care of it. we still can move to Trusty earlier as I didn't see any dependency of Precise here. 2) g++4.8 is built-in in Travis CI's Ubuntu Trusty environment, which means we don't need to spend time on adding ppa repository, apt update and apt install, could save time on the CI. --- .travis.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index 66451cf..cbcdf44 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,14 +1,9 @@ language: node_js +dist: trusty node_js: - 6 - 7 - lts/boron env: - CXX=g++-4.8 -addons: - apt: - sources: - - ubuntu-toolchain-r-test - packages: - - g++-4.8 cache: yarn