You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[main] Update dependencies from dotnet/arcade (#590)
* Update dependencies from https://github.com/dotnet/arcade build 20250521.2
Microsoft.DotNet.Arcade.Sdk
From Version 10.0.0-beta.25178.2 -> To Version 10.0.0-beta.25271.2
* Update dependencies from https://github.com/dotnet/arcade build 20250529.3
Microsoft.DotNet.Arcade.Sdk
From Version 10.0.0-beta.25178.2 -> To Version 10.0.0-beta.25279.3
---------
Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Copy file name to clipboardExpand all lines: eng/common/build.ps1
+4-1Lines changed: 4 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -21,6 +21,7 @@ Param(
21
21
[switch] $publish,
22
22
[switch] $clean,
23
23
[switch][Alias('pb')]$productBuild,
24
+
[switch]$fromVMR,
24
25
[switch][Alias('bl')]$binaryLog,
25
26
[switch][Alias('nobl')]$excludeCIBinarylog,
26
27
[switch] $ci,
@@ -74,6 +75,7 @@ function Print-Usage() {
74
75
Write-Host" -nativeToolsOnMachine Sets the native tools on machine environment variable (indicating that the script should use native tools on machine)"
75
76
Write-Host" -nodeReuse <value> Sets nodereuse msbuild parameter ('true' or 'false')"
Copy file name to clipboardExpand all lines: eng/common/core-templates/jobs/jobs.yml
+6-2Lines changed: 6 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -27,6 +27,9 @@ parameters:
27
27
# Optional: Publish the assets as soon as the publish to BAR stage is complete, rather doing so in a separate stage.
28
28
publishAssetsImmediately: false
29
29
30
+
# Optional: 🌤️ or not the build has assets it wants to publish to BAR
31
+
isAssetlessBuild: false
32
+
30
33
# Optional: If using publishAssetsImmediately and additional parameters are needed, can be used to send along additional parameters (normally sent to post-build.yml)
31
34
artifactsPublishingAdditionalParameters: ''
32
35
signingValidationAdditionalParameters: ''
@@ -93,7 +96,7 @@ jobs:
93
96
${{ parameter.key }}: ${{ parameter.value }}
94
97
95
98
- ${{ if and(eq(parameters.runAsPublic, 'false'), ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}:
96
-
- ${{ if or(eq(parameters.enablePublishBuildAssets, true), eq(parameters.artifacts.publish.manifests, 'true'), ne(parameters.artifacts.publish.manifests, '')) }}:
0 commit comments