add jenkinsfile

This commit is contained in:
Carolina Diaz 2025-10-31 14:35:10 -03:00
parent 0bd67f7086
commit 730530bf4a

11
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,11 @@
pipeline {
agent any
stages {
stage('Example stage') {
steps {
echo 'Hello Jenkins!'
}
}
}
}