Files
ffmpeg-builder/Jenkinsfile
2025-07-29 19:20:34 -05:00

25 lines
676 B
Groovy

pipeline {
agent none
stages {
stage('Build Matrix') {
matrix {
agent { label "linux" }
axes {
axis {
name 'DISTRO'
values 'debian:bookworm', 'ubuntu:24.04', 'ubuntu:22.04',
'ogarcia/archlinux:latest', 'fedora:42'
}
}
stages {
stage('Build') {
steps {
sh "./scripts/docker_run_image.sh ${DISTRO}"
}
}
}
}
}
}
}