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 (#7601)
* Update dependencies from https://github.com/dotnet/arcade build 20260321.1
On relative base path root
Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Build.Tasks.Feed , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.SignTool , Microsoft.DotNet.SwaggerGenerator.MSBuild , Microsoft.DotNet.XliffTasks , Microsoft.DotNet.XUnitExtensions From Version 11.0.0-beta.26163.2 -> To Version 11.0.0-beta.26171.1
* Update dependencies from https://github.com/dotnet/arcade build 20260327.6
On relative base path root
Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Build.Tasks.Feed , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.SignTool , Microsoft.DotNet.SwaggerGenerator.MSBuild , Microsoft.DotNet.XliffTasks , Microsoft.DotNet.XUnitExtensions From Version 11.0.0-beta.26163.2 -> To Version 11.0.0-beta.26177.6
* Update dependencies from https://github.com/dotnet/arcade build 20260404.1
On relative base path root
Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Build.Tasks.Feed , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.SignTool , Microsoft.DotNet.SwaggerGenerator.MSBuild , Microsoft.DotNet.XliffTasks , Microsoft.DotNet.XUnitExtensions From Version 11.0.0-beta.26163.2 -> To Version 11.0.0-beta.26204.1
* Update dependencies from https://github.com/dotnet/arcade build 20260411.1
On relative base path root
Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Build.Tasks.Feed , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.SignTool , Microsoft.DotNet.SwaggerGenerator.MSBuild , Microsoft.DotNet.XliffTasks , Microsoft.DotNet.XUnitExtensions From Version 11.0.0-beta.26163.2 -> To Version 11.0.0-beta.26211.1
* Add dotnet11 package source to NuGet.config
---------
Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Co-authored-by: Matt Mitchell <mmitche@microsoft.com>
Write-Host" -prepareMachine Prepare machine for CI run, clean up processes after build"
72
73
Write-Host" -warnAsError <value> Sets warnaserror msbuild parameter ('true' or 'false')"
74
+
Write-Host" -warnNotAsError <value> Sets a semi-colon delimited list of warning codes that should not be treated as errors"
73
75
Write-Host" -msbuildEngine <value> Msbuild engine to use to run build ('dotnet', 'vs', or unspecified)."
74
76
Write-Host" -excludePrereleaseVS Set to exclude build engines in prerelease versions of Visual Studio"
75
77
Write-Host" -nativeToolsOnMachine Sets the native tools on machine environment variable (indicating that the script should use native tools on machine)"
Copy file name to clipboardExpand all lines: eng/common/core-templates/job/renovate.yml
+69-8Lines changed: 69 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -53,6 +53,30 @@ parameters:
53
53
type: boolean
54
54
default: false
55
55
56
+
# Name of the arcade repository resource in the pipeline.
57
+
# This allows repos which haven't been onboarded to Arcade to still use this
58
+
# template by checking out the repo as a resource with a custom name and pointing
59
+
# this parameter to it.
60
+
- name: arcadeRepoResource
61
+
type: string
62
+
default: self
63
+
64
+
# Directory name for the self repo under $(Build.SourcesDirectory) in multi-checkout.
65
+
# In multi-checkout (when arcadeRepoResource != 'self'), Azure DevOps checks out the
66
+
# self repo to $(Build.SourcesDirectory)/<repoName>. Set this to match the auto-generated
67
+
# directory name. Using the auto-generated name is necessary rather than explicitly
68
+
# defining a checkout path because container jobs expect repos to live under the agent's
69
+
# workspace ($(Pipeline.Workspace)). On some self-hosted setups the host path
70
+
# (e.g., /mnt/vss/_work) differs from the container path (e.g., /__w), and a custom checkout
71
+
# path can fail validation. Using the default checkout location keeps the paths consistent
72
+
# and avoids this issue.
73
+
- name: selfRepoName
74
+
type: string
75
+
default: ''
76
+
- name: arcadeRepoName
77
+
type: string
78
+
default: ''
79
+
56
80
# Pool configuration for the job.
57
81
- name: pool
58
82
type: object
@@ -71,16 +95,36 @@ jobs:
71
95
# Changing the variable name here would require updating the name in https://github.com/dotnet/arcade/blob/main/eng/renovate.json as well.
0 commit comments