Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
c54acd1
Check version bump on release branches' update
GangWang01 Apr 17, 2024
5022f55
Skip check version bump on release branch update for initial commit t…
GangWang01 Apr 18, 2024
616facc
Remove the exception for dependencies update by dotnet-maestro[bot]
GangWang01 Apr 19, 2024
0e0916f
Bump version
JanKrivanek Apr 19, 2024
6a555e1
Merge pull request #10041 from dotnet/backport/pr-10024-to-vs17.10
surayya-MS Apr 22, 2024
4e49442
[automated] Merge branch 'vs17.9' => 'vs17.10' (#10081)
dotnet-maestro-bot May 2, 2024
7d15f33
Disable localization for vs17.10 (#10269)
AR-May Jun 26, 2024
33027ff
Enable private feeds for release branch (#10355)
AR-May Sep 11, 2024
805dbe7
[vs17.10] Update dependencies from dotnet/arcade (#10809)
dotnet-maestro[bot] Oct 14, 2024
310060b
CG alert cleaning on VS17.10 (#10724)
GangWang01 Oct 16, 2024
2ebe500
[vs17.10] Update dependencies from dotnet/arcade (#10833)
dotnet-maestro[bot] Oct 21, 2024
9e311e4
[vs17.10] Update dependencies from dotnet/arcade (#10896)
dotnet-maestro[bot] Oct 29, 2024
7620cbd
[vs17.10] Update dependencies from dotnet/arcade (#10992)
dotnet-maestro[bot] Dec 12, 2024
7c2b926
[automated] Merge branch 'vs17.8' => 'vs17.10' (#11124)
github-actions[bot] Dec 13, 2024
7d9b07b
[vs17.10] Run tests even if version is not bumped (#11059)
github-actions[bot] Dec 16, 2024
e6f2f55
Update .opt-prof.yml (#11121)
JanKrivanek Dec 11, 2024
3c74c6e
[vs17.10] Update dependencies from dotnet/arcade (#11223)
dotnet-maestro[bot] Jan 7, 2025
20a51f3
[vs17.11] Update dependencies from dotnet/arcade (#11222)
dotnet-maestro[bot] Jan 7, 2025
b54fa67
[vs17.10] Update dependencies from dotnet/arcade (#11265)
dotnet-maestro[bot] Jan 13, 2025
17752ce
[vs17.11] Update dependencies from dotnet/arcade (#11264)
dotnet-maestro[bot] Jan 14, 2025
e31f7f4
[vs17.11] Select proper VS channel (#11303)
JaynieBai Jan 20, 2025
789a00e
[vs17.10] Select proper VS channel (#11240)
JanKrivanek Jan 20, 2025
939cc33
[vs17.10] Update dependencies from dotnet/arcade (#11309)
dotnet-maestro[bot] Jan 21, 2025
89b5892
[vs17.11] Update dependencies from dotnet/arcade (#11308)
dotnet-maestro[bot] Jan 21, 2025
477cd30
[automated] Merge branch 'vs17.8' => 'vs17.10' (#11235)
github-actions[bot] Jan 24, 2025
c0b5c7f
Merge branch 'vs17.11' into merge/vs17.10-to-vs17.11
GangWang01 Jan 26, 2025
2c57e06
Bump up version prefix to 17.11.25
GangWang01 Jan 26, 2025
b9b4a39
[automated] Merge branch 'vs17.10' => 'vs17.11' (#11336)
SimaTian Jan 29, 2025
05aa9c3
Merge branch 'vs17.12' into merge/vs17.11-to-vs17.12
GangWang01 Feb 5, 2025
2d938c6
Bump up version prefix to 17.12.27
GangWang01 Feb 5, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 24 additions & 9 deletions azure-pipelines/vs-insertion.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
# To achieve insertion automation, this pipeline definition yml has to be on servicing branches and main.


# Runs in 3 modes:
# Runs in 3 modes:
# 1. daily main insertion from latest main CI.
# - can be disabled in the UI by adding a custom schedule for any branch.
# - can be disabled in the UI by adding a custom schedule for any branch.
# 2. trigger insert as a followup to a servicing CI run.
# - can be disabled in the UI by adding a custom CI trigger.
# 3. manual insertion - select manually the TargetBranch and inserted CI run.
Expand Down Expand Up @@ -56,6 +56,10 @@ parameters:
default: 183
type: number
displayName: 'Drop Retention Days (do not set to < 90)'
- name: SkipUploadingPackages
default: false
type: boolean
displayName: 'Skip uploading packages (set to true if inserting the same version multiple times)'

variables:
# `auto` should work every time and selecting a branch in parameters is likely to fail due to incompatible versions in MSBuild and VS
Expand Down Expand Up @@ -95,8 +99,8 @@ variables:
value: $(resources.pipeline.MSBuild.sourceCommit)
- name: ArtifactPackagesPath
value: $(Build.ArtifactStagingDirectory)/PackageArtifacts
- name: MSBuildPackagePattern

- name: MSBuildPackagePattern
value: '$(ArtifactPackagesPath)/Microsoft.Build.*.nupkg'
- name: StringToolsPackagePattern
value: '$(ArtifactPackagesPath)/Microsoft.NET.StringTools*.nupkg'
Expand Down Expand Up @@ -200,7 +204,6 @@ extends:
$MicrosoftNETStringToolsPackageVersion = $packageFile.BaseName.TrimStart("Microsoft.NET.StringTools")
Write-Host "Setting MicrosoftNETStringToolsPackageVersion to '$MicrosoftNETStringToolsPackageVersion'"
Write-Host "##vso[task.setvariable variable=MicrosoftNETStringToolsPackageVersion]$($MicrosoftNETStringToolsPackageVersion)"

$props = @(
"VS.ExternalAPIs.MSBuild=$MSBuild_ExtApisPackageVersion",
"Microsoft.Build=$MicrosoftNETStringToolsPackageVersion",
Expand All @@ -221,26 +224,38 @@ extends:
$propsValue = $props -join ";"
Write-Host "Setting InsertPackagePropsValues to '$propsValue'"
Write-Host "##vso[task.setvariable variable=InsertPackagePropsValues]$($propsValue)"

# autocomplete main
$autocomplete = "false"
if ("$(InsertTargetBranch)" -eq "main")
{
$autocomplete = "true"
}
Write-Host "Setting AutoCompleteEnabled to '$autocomplete'"
Write-Host "##vso[task.setvariable variable=AutoCompleteEnabled]$($autocomplete)"

- task: 1ES.PublishNuGet@1
displayName: 'Push MSBuild CoreXT packages'
condition: ${{ eq(parameters.SkipUploadingPackages, false) }}
inputs:
packageParentPath: '$(Build.ArtifactStagingDirectory)'
packagesToPush: $(MSBuildPackagePattern);$(StringToolsPackagePattern);$(ExternalAPIsPackagePattern)
nuGetFeedType: internal
publishVstsFeed: VS
allowPackageConflicts: true
allowPackageConflicts: false
- template: /azure-pipelines/WIFtoPATauth.yml@self
parameters:
wifServiceConnectionName: azure-public/vside package push
deadPATServiceConnectionId: 42175e93-c771-4a4f-a132-3cca78f44b3b
- task: 1ES.PublishNuGet@1
condition: ${{ eq(parameters.SkipUploadingPackages, false) }}
displayName: 'Push MSBuild packages to VSSDK'
inputs:
packageParentPath: '$(Build.ArtifactStagingDirectory)'
packagesToPush: $(MSBuildPackagePattern);$(StringToolsPackagePattern)
nuGetFeedType: external
publishFeedCredentials: azure-public/vssdk
allowPackageConflicts: true
allowPackageConflicts: false
- task: PowerShell@2
name: PrintTargetBranch
inputs:
Expand All @@ -262,6 +277,6 @@ extends:
DefaultConfigValues: $(InsertConfigValues)
InsertionReviewers: MSBuild,VS ProTools
CustomScriptExecutionCommand: $(InsertCustomScriptExecutionCommand)
AutoCompletePR: true
AutoCompletePR: $(AutoCompleteEnabled)
AutoCompleteMergeStrategy: Squash
InsertionBuildPolicy: Request Perf DDRITs
InsertionBuildPolicy: Request Perf DDRITs
2 changes: 1 addition & 1 deletion eng/Versions.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the MIT license. See License.txt in the project root for full license information. -->
<Project>
<PropertyGroup>
<VersionPrefix>17.12.26</VersionPrefix>
<VersionPrefix>17.12.27</VersionPrefix>
<DotNetFinalVersionKind>release</DotNetFinalVersionKind>
<PackageValidationBaselineVersion>17.11.4</PackageValidationBaselineVersion>
<AssemblyVersion>15.1.0.0</AssemblyVersion>
Expand Down