From 83697c1cf8e4e9062895b5769aa984a871a2d3b2 Mon Sep 17 00:00:00 2001 From: John Mulligan Date: Thu, 21 Aug 2025 12:59:19 -0400 Subject: [PATCH] cephadm: add ubuntu 24.04 container build test for completeness Signed-off-by: John Mulligan (cherry picked from commit e915b3963720a8424e7718fac09bf6954c9e8400) --- src/cephadm/tests/build/test_cephadm_build.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/cephadm/tests/build/test_cephadm_build.py b/src/cephadm/tests/build/test_cephadm_build.py index 602774865ab..724a025a6e5 100644 --- a/src/cephadm/tests/build/test_cephadm_build.py +++ b/src/cephadm/tests/build/test_cephadm_build.py @@ -42,6 +42,11 @@ CONTAINERS = { 'base_image': 'docker.io/library/ubuntu:22.04', 'script': 'apt update && apt install -y python3-venv', }, + 'ubuntu-24.04': { + 'name': 'cephadm-build-test:ubuntu-24-04-py3', + 'base_image': 'docker.io/library/ubuntu:24.04', + 'script': 'apt update && apt install -y python3-venv', + }, } BUILD_PY = 'src/cephadm/build.py' @@ -99,6 +104,7 @@ def source_dir(): 'centos-10', 'ubuntu-20.04', 'ubuntu-22.04', + 'ubuntu-24.04', ], ) def test_cephadm_build(env, source_dir, tmp_path): -- 2.39.5