mirror of
https://github.com/python/cpython.git
synced 2025-10-03 21:55:41 +00:00
gh-122544: Change OS image in GitHub Actions to Ubuntu 24.04 (#122566)
This commit is contained in:
parent
c3a12ae13e
commit
fc233f46d3
5 changed files with 7 additions and 8 deletions
8
.github/workflows/build.yml
vendored
8
.github/workflows/build.yml
vendored
|
@ -88,7 +88,7 @@ jobs:
|
||||||
name: 'Check if generated files are up to date'
|
name: 'Check if generated files are up to date'
|
||||||
# Don't use ubuntu-latest but a specific version to make the job
|
# Don't use ubuntu-latest but a specific version to make the job
|
||||||
# reproducible: to get the same tools versions (autoconf, aclocal, ...)
|
# reproducible: to get the same tools versions (autoconf, aclocal, ...)
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-24.04
|
||||||
timeout-minutes: 60
|
timeout-minutes: 60
|
||||||
needs: check_source
|
needs: check_source
|
||||||
if: needs.check_source.outputs.run_tests == 'true'
|
if: needs.check_source.outputs.run_tests == 'true'
|
||||||
|
@ -237,7 +237,7 @@ jobs:
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu-22.04]
|
os: [ubuntu-24.04]
|
||||||
openssl_ver: [3.0.15, 3.1.7, 3.2.3, 3.3.2]
|
openssl_ver: [3.0.15, 3.1.7, 3.2.3, 3.3.2]
|
||||||
env:
|
env:
|
||||||
OPENSSL_VER: ${{ matrix.openssl_ver }}
|
OPENSSL_VER: ${{ matrix.openssl_ver }}
|
||||||
|
@ -297,7 +297,7 @@ jobs:
|
||||||
|
|
||||||
test_hypothesis:
|
test_hypothesis:
|
||||||
name: "Hypothesis tests on Ubuntu"
|
name: "Hypothesis tests on Ubuntu"
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-24.04
|
||||||
timeout-minutes: 60
|
timeout-minutes: 60
|
||||||
needs: check_source
|
needs: check_source
|
||||||
if: needs.check_source.outputs.run_tests == 'true' && needs.check_source.outputs.run_hypothesis == 'true'
|
if: needs.check_source.outputs.run_tests == 'true' && needs.check_source.outputs.run_hypothesis == 'true'
|
||||||
|
@ -417,7 +417,7 @@ jobs:
|
||||||
if: needs.check_source.outputs.run_tests == 'true'
|
if: needs.check_source.outputs.run_tests == 'true'
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu-22.04]
|
os: [ubuntu-24.04]
|
||||||
env:
|
env:
|
||||||
OPENSSL_VER: 3.0.15
|
OPENSSL_VER: 3.0.15
|
||||||
PYTHONSTRICTEXTENSIONBUILD: 1
|
PYTHONSTRICTEXTENSIONBUILD: 1
|
||||||
|
|
1
.github/workflows/posix-deps-apt.sh
vendored
1
.github/workflows/posix-deps-apt.sh
vendored
|
@ -13,7 +13,6 @@ apt-get -yq install \
|
||||||
libgdbm-dev \
|
libgdbm-dev \
|
||||||
libgdbm-compat-dev \
|
libgdbm-compat-dev \
|
||||||
liblzma-dev \
|
liblzma-dev \
|
||||||
libmpdec-dev \
|
|
||||||
libncurses5-dev \
|
libncurses5-dev \
|
||||||
libreadline6-dev \
|
libreadline6-dev \
|
||||||
libsqlite3-dev \
|
libsqlite3-dev \
|
||||||
|
|
2
.github/workflows/reusable-tsan.yml
vendored
2
.github/workflows/reusable-tsan.yml
vendored
|
@ -21,7 +21,7 @@ on:
|
||||||
jobs:
|
jobs:
|
||||||
build_tsan_reusable:
|
build_tsan_reusable:
|
||||||
name: 'Thread sanitizer'
|
name: 'Thread sanitizer'
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-24.04
|
||||||
timeout-minutes: 60
|
timeout-minutes: 60
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|
2
.github/workflows/reusable-ubuntu.yml
vendored
2
.github/workflows/reusable-ubuntu.yml
vendored
|
@ -20,7 +20,7 @@ jobs:
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu-22.04]
|
os: [ubuntu-24.04]
|
||||||
env:
|
env:
|
||||||
FORCE_COLOR: 1
|
FORCE_COLOR: 1
|
||||||
OPENSSL_VER: 3.0.15
|
OPENSSL_VER: 3.0.15
|
||||||
|
|
2
.github/workflows/reusable-wasi.yml
vendored
2
.github/workflows/reusable-wasi.yml
vendored
|
@ -11,7 +11,7 @@ jobs:
|
||||||
build_wasi_reusable:
|
build_wasi_reusable:
|
||||||
name: 'build and test'
|
name: 'build and test'
|
||||||
timeout-minutes: 60
|
timeout-minutes: 60
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-24.04
|
||||||
env:
|
env:
|
||||||
WASMTIME_VERSION: 22.0.0
|
WASMTIME_VERSION: 22.0.0
|
||||||
WASI_SDK_VERSION: 24
|
WASI_SDK_VERSION: 24
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue