prueba/Jenkinsfile

11 lines
152 B
Groovy

pipeline {
agent any
stages {
stage('Build') {
steps {
echo 'Hello, World!'
}
}
}
}