diff --git a/jenkinsfile b/jenkinsfile index 50f6be1..d5a6fc2 100644 --- a/jenkinsfile +++ b/jenkinsfile @@ -26,4 +26,20 @@ pipeline { } } } +} + stages { + stage('test') { + steps { + echo "Hello ${params.PERSON}" + + echo "Biography: ${params.BIOGRAPHY}" + + echo "Toggle: ${params.TOGGLE}" + + echo "Choice: ${params.CHOICE}" + + echo "Password: ${params.PASSWORD}" + } + } + } }