Files
ffmpeg-builder/Jenkinsfile
2025-07-27 14:05:21 -05:00

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
}
}
}
}