taibc
taibc

Reputation: 923

How to pass parameter in rtc plugin Jenkins

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

enter image description here

enter image description here

I used %variable_name% but not successful.

Upvotes: 1

Views: 324

Answers (1)

VonC
VonC

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

Related Questions