pipeline {
agent any
stages {
stage('build') {
steps {
echo "parentJob"
}
stage('triggerChildJob') {
build job: "childJob", wait: true