more updates

This commit is contained in:
2025-07-28 19:50:08 -05:00
parent 5f797dad30
commit 90b441c93a
3 changed files with 34 additions and 44 deletions

4
Jenkinsfile vendored
View File

@@ -7,13 +7,13 @@ pipeline {
axes {
axis {
name 'DISTRO'
values 'debian', 'ubuntu', 'archlinux', 'fedora'
values 'debian:bookworm', 'ubuntu:24.04', 'archlinux:latest', 'fedora:42'
}
}
stages {
stage('Build') {
steps {
echo "Do Build for ${DISTRO}"
sh "./scripts/docker_run_image.sh ${DISTRO}"
}
}
}