我正在使用Jenkin Pipeline工作:
我想做什么?
formTo = $('#' + formTo);
我不想使用下面帖子中提到的文件或其他方法。 Hudson: What is a good way to store a variable between the two job runs?
所以我试过了:
1. There is a Job-1
2. Job 1 has lot of builds.
3. During the build run store some information in the build.Ex: Deployed version of the application
4. Access the stored information from other Job-2.
5. From Job-2 I can able to access the basic build information like BUILD_NUMBER, GIT_BRANCH etc..,
6. Even i can able to add some information in the build description and able to access it from Job-2. But i would like to store and retrieve lot of information . So storing it in build description looks messy.
请提供一些建议。