summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2018-01-17 12:58:29 -0700
committerGitHub <noreply@github.com>2018-01-17 12:58:29 -0700
commite79e4275031a71840d13baeeaeb577a40377a5ba (patch)
tree6c71c9bd18725d2cbfeaa3ecffdea24923133888
parent10a7d4fbb219e9198e9fa2b7dc3c3dcef7b39149 (diff)
parente404eedce6fa218932ff9305382e310ca2f7ec22 (diff)
downloadnumpy-e79e4275031a71840d13baeeaeb577a40377a5ba.tar.gz
Merge pull request #10423 from charris/update-ubuntu-version
MAINT: Update zesty to artful for i386 testing
-rw-r--r--.travis.yml2
-rwxr-xr-xtools/travis-test.sh7
2 files changed, 4 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml
index 2046ce975..fca0c632d 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 ca9f236a2..bd9f79c22 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()