mirror of
https://github.com/levogevo/ffmpeg-builder.git
synced 2026-01-15 19:06:17 +00:00
get docker working
This commit is contained in:
24
Jenkinsfile
vendored
24
Jenkinsfile
vendored
@@ -1,11 +1,23 @@
|
||||
pipeline {
|
||||
agent any // Specifies that the pipeline can run on any available agent
|
||||
|
||||
agent none
|
||||
stages {
|
||||
stage('Hello') { // Defines a stage named 'Hello'
|
||||
steps {
|
||||
echo 'Hello World!' // Prints "Hello World!" to the console
|
||||
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}"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user