InterviewSolution
Saved Bookmarks
| 1. |
How can we share information between different build steps or stages in a Jenkins Job? |
|
Answer» Every BUILD STEP or stage will be running in its process and hence SHARING information between TWO different build steps is not so direct. We can use either a FILE, a Database Entry, an Environment Variable, etc. to share info from one build step to another or a post-build action. |
|