From d5e5735679710e0028695159f00fcb44f7ade4fe Mon Sep 17 00:00:00 2001 From: Dave Johnson Date: Thu, 3 Aug 2017 08:45:11 -0700 Subject: [PATCH] Support travis new "trusty" build environment move from legacy precise to trusty build image fix PATH not including buildroot/bin remove symolic link to ~/bin as trusty travis image doesn't include it in PATH anyway --- .travis.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index fa0edf9e4..8bfd021d8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,4 +1,5 @@ -dist: precise +dist: trusty +sudo: false language: python python: @@ -24,7 +25,7 @@ before_install: # # Publish the buildroot script folder - chmod +x ${TRAVIS_BUILD_DIR}/buildroot/bin/* - - ln -s ${TRAVIS_BUILD_DIR}/buildroot/bin/ ~/bin + - export PATH=${TRAVIS_BUILD_DIR}/buildroot/bin/:${PATH} install: - pip install -U platformio