summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTyler Reddy <tyler.je.reddy@gmail.com>2020-05-03 19:24:36 -0600
committerTyler Reddy <tyler.je.reddy@gmail.com>2020-05-03 19:58:50 -0600
commit5adf00613d107ccc811c407d6b2cada4d54acad5 (patch)
treecb50fd7d87a68fa867eac5daf48c130b52ef6c36
parent14c3c183aa6b8bf504e8b763a3ce0c8ddd0ef6b6 (diff)
downloadnumpy-5adf00613d107ccc811c407d6b2cada4d54acad5.tar.gz
CI: pin 32-bit manylinux2010 image tag
* Azure CI is currently failing Linux 32-bit job because of a gcc toolchain bump in the base manylinux2010 image (32-bit) from ~12 hours ago; see NumPy gh-16146 for details; in short, we can't link to OpenBLAS in that matrix entry because the libgfortran in the new manylinux2010 image is too new * as a temporary workaround to constant CI failure, pin the base image to a tag from a few days ago, before the gcc toolchain update was merged
-rw-r--r--azure-pipelines.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index 7b23fef61..4d1351886 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -34,9 +34,9 @@ stages:
vmImage: 'ubuntu-18.04'
steps:
- script: |
- docker pull quay.io/pypa/manylinux2010_i686
+ docker pull quay.io/pypa/manylinux2010_i686:2020-04-29-0e1afc5
docker run -v $(pwd):/numpy -e CFLAGS="-msse2 -std=c99 -UNDEBUG" \
- -e F77=gfortran-5 -e F90=gfortran-5 quay.io/pypa/manylinux2010_i686 \
+ -e F77=gfortran-5 -e F90=gfortran-5 quay.io/pypa/manylinux2010_i686:2020-04-29-0e1afc5 \
/bin/bash -xc "cd numpy && \
/opt/python/cp38-cp38/bin/python -mvenv venv &&\
source venv/bin/activate && \