]> git.apps.os.sepia.ceph.com Git - ceph-ci.git/commitdiff
cephadm: add ubuntu 24.04 container build test for completeness
authorJohn Mulligan <jmulligan@redhat.com>
Thu, 21 Aug 2025 16:59:19 +0000 (12:59 -0400)
committerAdam King <adking@redhat.com>
Thu, 28 Aug 2025 15:19:45 +0000 (11:19 -0400)
Signed-off-by: John Mulligan <jmulligan@redhat.com>
(cherry picked from commit e915b3963720a8424e7718fac09bf6954c9e8400)

src/cephadm/tests/build/test_cephadm_build.py

index 602774865ab01ad0451a133877ef967540e9ec3b..724a025a6e5a213628d50503320d49d0c96a9061 100644 (file)
@@ -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):