mirror of
https://github.com/levogevo/ffmpeg-builder.git
synced 2026-01-15 19:06:17 +00:00
11 lines
286 B
Groovy
11 lines
286 B
Groovy
pipeline {
|
|
agent any // Specifies that the pipeline can run on any available agent
|
|
|
|
stages {
|
|
stage('Hello') { // Defines a stage named 'Hello'
|
|
steps {
|
|
echo 'Hello World!' // Prints "Hello World!" to the console
|
|
}
|
|
}
|
|
}
|
|
} |