We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c6c4f3 commit 3bff8c0Copy full SHA for 3bff8c0
.vsts-ci/linux.yml
@@ -116,11 +116,13 @@ stages:
116
clean: true
117
118
- pwsh: |
119
+ $buildId = $env:BUILD_BUILDID
120
+ Write-Verbose "Fall back seed: $buildId" -Verbose
121
# For PRs set the seed to the PR number so that the image is always the same
122
$seed = $env:SYSTEM_PULLREQUEST_PULLREQUESTID
123
if(!$seed) {
124
# for non-PRs use the integer identifier of the build as the seed.
- $seed = $env:SYSTEM_BUILD_BUILDID
125
+ $seed = $buildId
126
}
127
Write-Verbose "Seed: $seed" -Verbose
128
0 commit comments