Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

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

tfs - Passing release variables between two agent phases

I'm working with TFS on-premise. My issue is that during a release I have two agent phases separated by a manual intervention.

In the first agent phase, I set a variable with:

Write-Verbose $("##vso[task.setvariable variable={0};]{1}" -f $variablename, $variable)

Problem is that in the second agent phase, this variable doesn't exist anymore, even if the same agent is used for the second release phase.

How may I pass a variable between two agent phases during the same release?

See Question&Answers more detail:os

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

1 Answer

0 votes
by (71.8m points)

There is no way to persist variables (no matter powershell variables or VSTS user defined variables) between two agent phases (and environments) for now.

And there is a related issue Variables set via logging commands are not persistent between agents, you can follow up.

The work around for now is define the variable again in next agent phase.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...