more fixes

This commit is contained in:
2025-08-03 11:15:49 -05:00
parent f78a5f2851
commit 6ab9e7123d
2 changed files with 20 additions and 30 deletions

22
Jenkinsfile vendored
View File

@@ -3,37 +3,25 @@ pipeline {
stages {
stage('Build Docker Image Matrix') {
matrix {
agent { label "linux && amd64" }
axes {
axis {
name 'DISTRO'
values 'debian:bookworm', 'ubuntu:24.04', 'ubuntu:22.04',
'archlinux:latest', 'fedora:42'
values 'debian-bookworm', 'ubuntu-24.04', 'ubuntu-22.04',
'archlinux-latest', 'fedora-42'
}
}
stages {
stage('Build Docker Image') {
agent { label "linux && amd64" }
steps {
sh "./scripts/docker_build_image.sh ${DISTRO}"
sh "./scripts/docker_save_image.sh ${DISTRO}"
stash includes: "gitignore/docker/*${DISTRO}.tar.zst", name: "${DISTRO}-stash"
}
}
}
}
}
stage('Run Docker Image Matrix') {
matrix {
agent { label "linux && arm64" }
axes {
axis {
name 'DISTRO'
values 'debian:bookworm', 'ubuntu:24.04', 'ubuntu:22.04',
'archlinux:latest', 'fedora:42'
}
}
stages {
stage('Run Docker Image') {
agent { label "linux && arm64" }
steps {
unstash "${DISTRO}-stash"
sh "./scripts/docker_load_image.sh ${DISTRO}"