try debian 13 and fedora 41

This commit is contained in:
2025-08-15 14:20:26 -05:00
parent 586d871f88
commit 4345ca5878
2 changed files with 10 additions and 7 deletions

6
Jenkinsfile vendored
View File

@@ -7,8 +7,10 @@ pipeline {
axes { axes {
axis { axis {
name 'DISTRO' name 'DISTRO'
values 'ubuntu-22.04', 'ubuntu-24.04', values 'ubuntu-24.04',
'debian-12', 'fedora-42', 'fedora-42',
'fedora-41',
'debian-13',
'archlinux-latest' 'archlinux-latest'
} }
axis { axis {

View File

@@ -1,9 +1,10 @@
#!/usr/bin/env bash #!/usr/bin/env bash
VALID_DOCKER_IMAGES=( VALID_DOCKER_IMAGES=(
'ubuntu-22.04' 'ubuntu-24.04' 'ubuntu-24.04'
'fedora-41' 'fedora-42' 'fedora-42'
'debian-12' 'fedora-41'
'debian-13'
'archlinux-latest' 'archlinux-latest'
) )
DOCKER_WORKDIR='/workdir' DOCKER_WORKDIR='/workdir'
@@ -240,7 +241,7 @@ docker_run_image() {
if [[ ${DOCKER_REGISTRY} != '' ]]; then if [[ ${DOCKER_REGISTRY} != '' ]]; then
docker_login || return 1 docker_login || return 1
docker pull \ docker pull \
"${DOCKER_REGISTRY}/${image_tag}" "${DOCKER_REGISTRY}/${image_tag}" || return 1
docker tag "${DOCKER_REGISTRY}/${image_tag}" "${image_tag}" docker tag "${DOCKER_REGISTRY}/${image_tag}" "${image_tag}"
fi fi