Skip to content
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
a886564
Add localization setup for main and release branches
JanKrivanek Jun 15, 2023
19c0cf6
Bump version
JanKrivanek Jun 15, 2023
b693880
Merge pull request #8887 from dotnet/JanKrivanek-patch-3
JanKrivanek Jun 15, 2023
a534895
Merge branch 'vs17.4' into merge/vs17.2-to-vs17.4
JanKrivanek Jun 15, 2023
a54bbdd
Bump version
JanKrivanek Jun 15, 2023
7fc4414
Merge pull request #8891 from dotnet-maestro-bot/merge/vs17.2-to-vs17.4
JanKrivanek Jun 15, 2023
eac3fbf
Fix expressions for OneLocBuild
JanKrivanek Jun 15, 2023
f136f1d
Bump version
JanKrivanek Jun 15, 2023
6d15547
Merge pull request #8895 from dotnet/JanKrivanek-patch-4
JanKrivanek Jun 15, 2023
39efb9a
Merge branch 'vs17.4' into merge/vs17.2-to-vs17.4
JanKrivanek Jun 15, 2023
df95854
Bump version
JanKrivanek Jun 15, 2023
e65f731
Update dependencies from https://github.com/dotnet/arcade build 20230…
dotnet-maestro[bot] Jun 15, 2023
b0d6785
Update sdk version to bump pulled runtime
JanKrivanek Jun 16, 2023
ec9b462
Merge pull request #8902 from dotnet/JanKrivanek-patch-3
JanKrivanek Jun 16, 2023
44c2f3a
Bump Version
JanKrivanek Jun 16, 2023
17dbef7
Update vulnerable System.Security.Cryptography.Pkcs
JanKrivanek Jun 16, 2023
9c88c4f
Merge pull request #8904 from dotnet/JanKrivanek-patch-3
JanKrivanek Jun 16, 2023
2e08259
Bump version
JanKrivanek Jun 16, 2023
0726800
Merge pull request #8899 from dotnet/darc-vs17.2-b91db530-558b-4fe7-b…
JanKrivanek Jun 16, 2023
fa1e79d
Merge branch 'vs17.2' into merge/vs17.2-to-vs17.4
JanKrivanek Jun 16, 2023
40ad487
Merge pull request #8897 from dotnet-maestro-bot/merge/vs17.2-to-vs17.4
JanKrivanek Jun 16, 2023
4635ad8
Merge branch 'vs17.6' into merge/vs17.4-to-vs17.6
JanKrivanek Jun 16, 2023
689ca02
Bump version
JanKrivanek Jun 16, 2023
7fd8e63
Bum version
JanKrivanek Jun 16, 2023
6918b86
Merge pull request #8905 from dotnet/JanKrivanek-patch-5
JanKrivanek Jun 19, 2023
ce6513f
Merge branch 'vs17.4' into merge/vs17.4-to-vs17.6
JanKrivanek Jun 19, 2023
49a3ed7
Merge branch 'merge/vs17.4-to-vs17.6' of https://github.com/dotnet-ma…
JanKrivanek Jun 19, 2023
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: 26 additions & 7 deletions .vsts-dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,19 +39,38 @@ variables:
value: .NETCore
- name: _DotNetValidationArtifactsCategory
value: .NETCoreValidation
- name: EnableReleaseOneLocBuild
value: false

stages:
- stage: build
displayName: Build

jobs:
- ${{ if eq(variables['Build.SourceBranch'], 'refs/heads/vs17.4') }}: # should track next-release's active dev branch
- template: /eng/common/templates/job/onelocbuild.yml
parameters:
LclSource: lclFilesfromPackage
LclPackageId: 'LCL-JUNO-PROD-MSBUILD'
MirrorRepo: 'msbuild'
MirrorBranch: 'main' # should match condition above
- ${{ if and( ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}:
# The localization setup for release/ branches. Note difference in LclPackageId. main branch is handled separately below.
# Used for vs17.2, vs17.4, vs17.6 etc. branches only.
# When the branch is setup for localization (the localization ticket needs to be created - https://aka.ms/ceChangeLocConfig, requesting change from one release branch to another),
# set 'EnableReleaseOneLocBuild' to true.
- ${{ if startsWith(variables['Build.SourceBranch'], 'refs/heads/vs') }}:
- template: /eng/common/templates/job/onelocbuild.yml
parameters:
MirrorRepo: 'msbuild'
LclSource: lclFilesfromPackage
LclPackageId: 'LCL-JUNO-PROD-MSBUILDREL'
MirrorBranch: replace(variables['Build.SourceBranch'], 'refs/heads/', '')
JobNameSuffix: '_release'
condition: $(EnableReleaseOneLocBuild)
# The localization setup for main branch. Note difference in package ID. Should not be used with release/ branches.
- ${{ if eq(variables['Build.SourceBranch'], 'refs/heads/main') }}:
- template: /eng/common/templates/job/onelocbuild.yml
parameters:
MirrorRepo: 'msbuild'
LclSource: lclFilesfromPackage
LclPackageId: 'LCL-JUNO-PROD-MSBUILD'
MirrorBranch: 'main'
JobNameSuffix: '_main'
condition: eq(variables['Build.SourceBranch'], 'refs/heads/main')

- job: Windows_NT
pool:
Expand Down
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.4.6</VersionPrefix>
<VersionPrefix>17.4.7</VersionPrefix>
<DotNetFinalVersionKind>release</DotNetFinalVersionKind>
<AssemblyVersion>15.1.0.0</AssemblyVersion>
<PreReleaseVersionLabel>preview</PreReleaseVersionLabel>
Expand Down