frovide.com/Jenkinsfile
Insub Kim e4cbf4ef4f
All checks were successful
main-branch-frovide/pipeline/head This commit looks good
move file location
2025-06-05 01:46:49 +00:00

10 lines
155 B
Groovy

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