Jenkins: What is a good way to store a variable between two job runs?

前端 未结 3 2184
一个人的身影
一个人的身影 2021-02-20 09:16

I have a time-triggered job which needs to retrieve certain values stored in a previous run of this job.

Is there a way to store values between job runs in the Jenkins e

3条回答
  •  爱一瞬间的悲伤
    2021-02-20 10:10

    I would pass the variable from the first job to the second as a parameter in a parameterized build. See this question for more info on how to trigger a parameterized build from another build.

提交回复
热议问题