Files
Status/Jenkinsfile
vgallegoiz 9355d9b2de
All checks were successful
Gitea/Status/pipeline/head This commit looks good
Test Jenkinsfile
2024-05-05 19:58:01 +02:00

10 lines
149 B
Groovy

pipeline {
agent any
stages {
stage("Hello") {
steps {
echo "Hello world"
}
}
}
}