How to access parameters in a Parameterized Build?

I think the variable is available directly, rather than through env, when using Workflow plugin.
Try:

node()
{
    print "DEBUG: parameter foo = ${foo}"
}

Leave a Comment