mirror of
https://github.com/levogevo/ffmpeg-builder.git
synced 2026-01-15 19:06:17 +00:00
24 lines
583 B
Groovy
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}"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|