Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
252 views
in Technique[技术] by (71.8m points)

How to create a set of Jenkins variables based on one chosen parameter?

I'm using a jenkins freestyle project which has parameterized build enabled.

enter image description here

How can I create a set of variables based on the chose parameter?

For example:

When the parameter param1 is chosen, I want the set of variables to be equal to

CONFIG=config_a.yml
AWS_PROFILE=aws-profile-aa
ANT_BUILD_FILE=buildA

When param2 is chosen, the above set of variables should be set to

CONFIG=config_b.yml
AWS_PROFILE=aws-profile-bb
ANT_BUILD_FILE=buildB

CONFIG, AWS_PROFILE, and ANT_BUILD_FILE variables will be accessed in Execute shell, and Invoke Ant.

enter image description here

enter image description here

I don't want to define 3 parameters like this

enter image description here

Because my jenkins project should never build with CONFIG=config_a.yml and AWS_PROFILE=aws-profile-bb together.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Why you not using ant? Its very easy to write build.xml file for ant

https://ant.apache.org/manual/using.html


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...