8000 MAINT: Update zesty to artful for i386 testing by charris · Pull Request #10425 · numpy/numpy · GitHub
[go: up one dir, main page]

Skip to content

MAINT: Update zesty to artful for i386 testing #10425

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 17, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.
  • Loading branch information
charris committed Jan 17, 2018
commit 2145e1b8e4f061fcf5c16d9d63e743c00d208937
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
7 changes: 3 additions & 4 deletions tools/travis-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
0