From 2145e1b8e4f061fcf5c16d9d63e743c00d208937 Mon Sep 17 00:00:00 2001 From: Charles Harris Date: Wed, 17 Jan 2018 10:28:03 -0700 Subject: [PATCH] MAINT: Update zesty to artful for i386 testing The zesty release hit end of life Jan 13, 2018 and it seems that travis ci tests are failing due to a failure to fetch it. This updates to use artful. When the bionic LTS comes out in April, we should update again. --- .travis.yml | 2 +- tools/travis-test.sh | 7 +++---- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 2046ce975145..fca0c632dc6a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -38,7 +38,7 @@ python: matrix: include: - python: 2.7 - env: USE_CHROOT=1 ARCH=i386 DIST=zesty PYTHON=2.7 + env: USE_CHROOT=1 ARCH=i386 DIST=artful PYTHON=2.7 sudo: true dist: trusty addons: diff --git a/tools/travis-test.sh b/tools/travis-test.sh index ca9f236a29d0..bd9f79c229a8 100755 --- a/tools/travis-test.sh +++ b/tools/travis-test.sh @@ -89,14 +89,13 @@ setup_chroot() sudo chroot $DIR bash -c "apt-get update" # faster operation with preloaded eatmydata - sudo chroot $DIR bash -c "apt-get install -qq -y --force-yes eatmydata" + sudo chroot $DIR bash -c "apt-get install -qq -y eatmydata" echo '/usr/$LIB/libeatmydata.so' | \ sudo tee -a $DIR/etc/ld.so.preload # install needed packages - sudo chroot $DIR bash -c "apt-get install -qq -y --force-yes \ - libatlas-dev libatlas-base-dev gfortran \ - python-dev python-nose python-pip cython" + sudo chroot $DIR bash -c "apt-get install -qq -y \ + libatlas-base-dev gfortran python-dev python-nose python-pip cython" } run_test()