I am trying to add a parameter called timeout in all my Jenkin jobs.
Asked
Active
Viewed 41 times
1 Answers
0
I think what you are looking for are called Jenkins Pipeline Environment variables.
The Jenkins pipeline environment variables facilitate the benefits like :
- Injection of sensitive data at runtime to avoid the hardcoding into the pipeline.
- Addition of job parameters available only at runtime, but not at design time.
- Boolean values set in environment variables help certain toggle stages in a pipeline via a parameter that describes a specific subset of tests you want to run.
- Providing IDs of credentials defined in Jenkins.
I think the first point is the benefit you are looking for.

It Grunt
- 3,300
- 3
- 21
- 35