mirror of
https://github.com/levogevo/ffmpeg-builder.git
synced 2026-01-15 19:06:17 +00:00
add jenkinsfile
This commit is contained in:
11
Jenkinsfile
vendored
Normal file
11
Jenkinsfile
vendored
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
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
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user