summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2021-03-05 08:26:30 -0700
committerCharles Harris <charlesr.harris@gmail.com>2021-03-05 13:34:50 -0700
commit7d33c0a910501ad4f609ce7f0b4e7d083b3bd2b6 (patch)
treeab8ac260ddff8849126286fa75aa90f5b8f6d9a8
parent168978df69efecb07943fd8ce3a7c95aab7122cb (diff)
downloadnumpy-7d33c0a910501ad4f609ce7f0b4e7d083b3bd2b6.tar.gz
CI: Pin docker image.
The azure-pipeline test Linux_Python_38_32bit_full_with_asserts has been failing after the release of the latest manylinux2010. Pin the docker image to an earlier version to fix this. Closes #18553.
-rw-r--r--azure-pipelines.yml5
1 files changed, 2 insertions, 3 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index d55bb6cef..f1cf2a9b3 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -63,12 +63,11 @@ stages:
- job: Linux_Python_38_32bit_full_with_asserts
pool:
- vmImage: 'ubuntu-18.04'
+ vmImage: 'ubuntu-20.04'
steps:
- script: |
- docker pull quay.io/pypa/manylinux2010_i686
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:2021-02-28-1f32361 \
/bin/bash -xc "cd numpy && \
/opt/python/cp38-cp38/bin/python -mvenv venv &&\
source venv/bin/activate && \