diff options
author | Erlend E. Aasland <erlend@python.org> | 2024-05-06 09:03:36 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-06 09:03:36 (GMT) |
commit | a81fe2a8f82d98c05c18908958efb757d35384b4 (patch) | |
tree | 2d07a4bed3feb68568ae93891c5e4ba6a625a40b | |
parent | 6abf8401db57effb1fa4b1dd0a4477bc923a6385 (diff) | |
download | cpython-a81fe2a8f82d98c05c18908958efb757d35384b4.zip cpython-a81fe2a8f82d98c05c18908958efb757d35384b4.tar.gz cpython-a81fe2a8f82d98c05c18908958efb757d35384b4.tar.bz2 |
[3.12] gh-115119: Bump CI to use Ubuntu 22.04 (#118631) (#118634)
Ubuntu 22.04 ships with mpdecimal 2.5.1, installable using 'apt install libmpdec-dev'.
-rw-r--r-- | .github/workflows/build.yml | 6 | ||||
-rw-r--r-- | .github/workflows/reusable-ubuntu.yml | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ff58848..cad8d46 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -244,7 +244,7 @@ jobs: build_ubuntu_ssltests: name: 'Ubuntu SSL tests with OpenSSL' - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 timeout-minutes: 60 needs: check_source if: needs.check_source.outputs.run_tests == 'true' @@ -302,7 +302,7 @@ jobs: test_hypothesis: name: "Hypothesis tests on Ubuntu" - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 timeout-minutes: 60 needs: check_source if: needs.check_source.outputs.run_tests == 'true' && needs.check_source.outputs.run_hypothesis == 'true' @@ -415,7 +415,7 @@ jobs: build_asan: name: 'Address sanitizer' - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 timeout-minutes: 60 needs: check_source if: needs.check_source.outputs.run_tests == 'true' diff --git a/.github/workflows/reusable-ubuntu.yml b/.github/workflows/reusable-ubuntu.yml index cbbd4d1..0dbfcab 100644 --- a/.github/workflows/reusable-ubuntu.yml +++ b/.github/workflows/reusable-ubuntu.yml @@ -12,7 +12,7 @@ jobs: build_ubuntu_reusable: name: 'build and test' timeout-minutes: 60 - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 env: OPENSSL_VER: 3.0.13 PYTHONSTRICTEXTENSIONBUILD: 1 |