-
Type:
Bug
-
Resolution: Not A Defect
-
Priority:
Critical
-
Component/s: pipeline
I am getting the above error while running sample script on a project.I am adding that sample script :
pipeline \{
agent any
stages \{
stage('Build') \{
steps \{
echo 'Building..'
}
}
stage('Test') \{
steps \{
echo 'Testing..'
}
}
stage('Deploy') \{
steps \{
echo 'Deploying....'
}
}
}
}
Please check and let me know