diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2022-04-25 06:51:49 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-25 06:51:49 -0600 |
commit | 53b3a42c13b2c9755f88d92a35a3786ca0f0deb4 (patch) | |
tree | 88abb518bbd7a257a34d3b95589f9e98da655b87 | |
parent | 732ed25e4a1e3802d82a976f9541f74548b13e6f (diff) | |
parent | efe7024404afb80666badd3675bf575bc8f8c590 (diff) | |
download | numpy-53b3a42c13b2c9755f88d92a35a3786ca0f0deb4.tar.gz |
Merge pull request #21388 from mattip/focal
MAINT: be sure to match base and docker images
-rw-r--r-- | .github/workflows/build_test.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/build_test.yml b/.github/workflows/build_test.yml index 6bc92cc99..db7883ab9 100644 --- a/.github/workflows/build_test.yml +++ b/.github/workflows/build_test.yml @@ -235,7 +235,8 @@ jobs: armv7_simd_test: needs: [smoke_test] - runs-on: ubuntu-latest + # make sure this (20.04) matches the base docker image (focal) below + runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v3 with: @@ -249,7 +250,7 @@ jobs: # use x86_64 cross-compiler to speed up the build sudo apt update sudo apt install -y gcc-arm-linux-gnueabihf g++-arm-linux-gnueabihf - docker run --name the_container --interactive -v /:/host arm32v7/ubuntu:latest /bin/bash -c " + docker run --name the_container --interactive -v /:/host arm32v7/ubuntu:focal /bin/bash -c " apt update && apt install -y git python3 python3-dev python3-pip && pip3 install cython==0.29.28 setuptools\<49.2.0 hypothesis==6.23.3 pytest==6.2.5 && |