Files
ffmpeg-builder/Jenkinsfile
2025-07-29 19:06:01 -05:00

24 lines
626 B
Groovy

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