Files
ffmpeg-builder/Jenkinsfile
2025-07-28 19:03:56 -05:00

24 lines
583 B
Groovy

pipeline {
agent none
stages {
stage('Build Matrix') {
matrix {
agent { label "linux" }
axes {
axis {
name 'DISTRO'
values 'debian', 'ubuntu', 'archlinux', 'fedora'
}
}
stages {
stage('Build') {
steps {
echo "Do Build for ${DISTRO}"
}
}
}
}
}
}
}