diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2023-01-17 12:28:31 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-17 12:28:31 -0500 |
commit | 9b6a7b4f874f5502112f36d485b12d92889eb808 (patch) | |
tree | 8afecd0b2acc362bb6f7b17aa2fed3d2a8af9929 /.github | |
parent | b511719a25d3437081dfe6976e64448221c33001 (diff) | |
parent | 34b5fd0c940e230b4d5e13f3060213804b93d895 (diff) | |
download | numpy-9b6a7b4f874f5502112f36d485b12d92889eb808.tar.gz |
Merge pull request #23026 from seberg/bump-ci
CI: Bump debug test to ubuntu-latest/22.04 rather than 20.04
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build_test.yml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/build_test.yml b/.github/workflows/build_test.yml index 9d391b508..08d531105 100644 --- a/.github/workflows/build_test.yml +++ b/.github/workflows/build_test.yml @@ -177,7 +177,7 @@ jobs: debug: needs: [smoke_test] - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest env: USE_DEBUG: 1 steps: @@ -326,8 +326,8 @@ jobs: armv7_simd_test: needs: [smoke_test] - # make sure this (20.04) matches the base docker image (focal) below - runs-on: ubuntu-20.04 + # make sure this matches the base docker image below + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v3 with: @@ -343,10 +343,10 @@ jobs: sudo apt install -y gcc-arm-linux-gnueabihf g++-arm-linux-gnueabihf # Keep the `test_requirements.txt` dependency-subset synced - docker run --name the_container --interactive -v /:/host arm32v7/ubuntu:focal /bin/bash -c " + docker run --name the_container --interactive -v /:/host arm32v7/ubuntu:22.04 /bin/bash -c " apt update && - apt install -y git python3 python3-dev python3-pip && - pip3 install cython==0.29.30 setuptools\<49.2.0 hypothesis==6.23.3 pytest==6.2.5 'typing_extensions>=4.2.0' && + apt install -y git python3 python3-dev python3-pip && + python3 -m pip install cython==0.29.30 setuptools\<49.2.0 hypothesis==6.23.3 pytest==6.2.5 'typing_extensions>=4.2.0' && ln -s /host/lib64 /lib64 && ln -s /host/lib/x86_64-linux-gnu /lib/x86_64-linux-gnu && ln -s /host/usr/arm-linux-gnueabihf /usr/arm-linux-gnueabihf && |