pruebaCI/Jenkinsfile

10 lines
171 B
Plaintext
Raw Normal View History

2023-12-19 17:13:55 -05:00
pipeline {
agent any
stages {
stage("Hello"){
steps {
2023-12-20 14:49:13 -05:00
echo "Hello World from appi3 comprobando"
2023-12-19 17:13:55 -05:00
}
}
}
}