Reputation: 923
I am using RTC plugin for get source from IBM Rational Teamconcert in Jenkins, but how can I pass the parameter that I declared using This project is parameterized plugin like the image below
I used %variable_name%
but not successful.
Upvotes: 1
Views: 324
Reputation: 1325137
You can see an example of a String parameter used in the Job Configuration section of this plugin.
However, make sure your Jenkins is running on Windows if you want to use %A_VARIABLE%
syntax.
If it runs on Linux, that would be ${A_VARIABLE}
.
Upvotes: 0