...
Jenkins Pipeline of Sample
Code Block pipeline { agent any stages { stage("Build") { steps { echo "Jenkins Pipeline running" } } } }
...
Code Block |
---|
pipeline {
agent any
stages {
stage("Build") {
steps {
echo "Jenkins Pipeline running"
}
}
}
} |