summaryrefslogtreecommitdiff
path: root/eng/common/pipeline-logging-functions.ps1
diff options
context:
space:
mode:
authordotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>2019-07-11 13:18:18 -0700
committerWilliam Godbe <wigodbe@microsoft.com>2019-07-11 13:18:18 -0700
commit90cb475f13c20986083c18571a6eb6e2b57934ae (patch)
tree2b77c6475f55e40df223eb7e199f4a87fecc0c48 /eng/common/pipeline-logging-functions.ps1
parent9227bd5385484f4c652d209f6403e8fb78abd25f (diff)
downloadcoreclr-90cb475f13c20986083c18571a6eb6e2b57934ae.tar.gz
coreclr-90cb475f13c20986083c18571a6eb6e2b57934ae.tar.bz2
coreclr-90cb475f13c20986083c18571a6eb6e2b57934ae.zip
[master] Update dependencies from dotnet/arcade (#25611)
* Update dependencies from https://github.com/dotnet/arcade build 20190709.1 - Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.19359.1 - Microsoft.DotNet.Build.Tasks.Feed - 2.2.0-beta.19359.1 - Microsoft.DotNet.Build.Tasks.Packaging - 1.0.0-beta.19359.1 - Microsoft.DotNet.Helix.Sdk - 2.0.0-beta.19359.1 * Update dependencies from https://github.com/dotnet/arcade build 20190709.6 - Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.19359.6 - Microsoft.DotNet.Build.Tasks.Feed - 2.2.0-beta.19359.6 - Microsoft.DotNet.Build.Tasks.Packaging - 1.0.0-beta.19359.6 - Microsoft.DotNet.Helix.Sdk - 2.0.0-beta.19359.6 * Update dependencies from https://github.com/dotnet/arcade build 20190710.8 - Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.19360.8 - Microsoft.DotNet.Build.Tasks.Feed - 2.2.0-beta.19360.8 - Microsoft.DotNet.Build.Tasks.Packaging - 1.0.0-beta.19360.8 - Microsoft.DotNet.Helix.Sdk - 2.0.0-beta.19360.8
Diffstat (limited to 'eng/common/pipeline-logging-functions.ps1')
-rw-r--r--eng/common/pipeline-logging-functions.ps17
1 files changed, 4 insertions, 3 deletions
diff --git a/eng/common/pipeline-logging-functions.ps1 b/eng/common/pipeline-logging-functions.ps1
index 7b61376f8a..af5f48aace 100644
--- a/eng/common/pipeline-logging-functions.ps1
+++ b/eng/common/pipeline-logging-functions.ps1
@@ -77,13 +77,14 @@ function Write-PipelineTaskError {
[string]$Name,
[string]$Value,
[switch]$Secret,
- [switch]$AsOutput)
-
+ [switch]$AsOutput,
+ [bool]$IsMultiJobVariable=$true)
+
if($ci) {
Write-LoggingCommand -Area 'task' -Event 'setvariable' -Data $Value -Properties @{
'variable' = $Name
'isSecret' = $Secret
- 'isOutput' = 'true'
+ 'isOutput' = $IsMultiJobVariable
} -AsOutput:$AsOutput
}
}