diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2021-03-05 14:19:59 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-05 14:19:59 -0700 |
commit | 6222e283fa0b8fb9ba562dabf6ca9ea7ed65be39 (patch) | |
tree | d24bf6877f0df325c9b2717dcb6fcc8e78d5ae92 /azure-pipelines.yml | |
parent | 33f9e1fc3efc7e98bb937339273bb48e32ef527b (diff) | |
parent | 7d33c0a910501ad4f609ce7f0b4e7d083b3bd2b6 (diff) | |
download | numpy-6222e283fa0b8fb9ba562dabf6ca9ea7ed65be39.tar.gz |
Merge pull request #18554 from charris/pin-docker-image
CI: Pin docker image.
Diffstat (limited to 'azure-pipelines.yml')
-rw-r--r-- | azure-pipelines.yml | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index af6799e44..d2e251acd 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 && \ |