add jenkinsfile

This commit is contained in:
2025-07-27 14:05:21 -05:00
parent 2b7faac58c
commit 9dbfaf9c4f

11
Jenkinsfile vendored Normal file
View 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
}
}
}
}