Skip to content

Commit b389e05

Browse files
committed
Merge in 'release/7.0' changes
2 parents aeca24b + dcb15fe commit b389e05

File tree

4 files changed

+54
-9
lines changed

4 files changed

+54
-9
lines changed

eng/Version.Details.xml

+6-6
Original file line numberDiff line numberDiff line change
@@ -39,17 +39,17 @@
3939
</Dependency>
4040
</ProductDependencies>
4141
<ToolsetDependencies>
42-
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="7.0.0-beta.24171.2">
42+
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="7.0.0-beta.24171.6">
4343
<Uri>https://github.com/dotnet/arcade</Uri>
44-
<Sha>bc35747acd136d5aca170df4ec527c346db76c8e</Sha>
44+
<Sha>834d09f0c963da37c88aed7ba3a83acafe582948</Sha>
4545
</Dependency>
46-
<Dependency Name="Microsoft.DotNet.Build.Tasks.Templating" Version="7.0.0-beta.24171.2">
46+
<Dependency Name="Microsoft.DotNet.Build.Tasks.Templating" Version="7.0.0-beta.24171.6">
4747
<Uri>https://github.com/dotnet/arcade</Uri>
48-
<Sha>bc35747acd136d5aca170df4ec527c346db76c8e</Sha>
48+
<Sha>834d09f0c963da37c88aed7ba3a83acafe582948</Sha>
4949
</Dependency>
50-
<Dependency Name="Microsoft.DotNet.Helix.Sdk" Version="7.0.0-beta.24171.2">
50+
<Dependency Name="Microsoft.DotNet.Helix.Sdk" Version="7.0.0-beta.24171.6">
5151
<Uri>https://github.com/dotnet/arcade</Uri>
52-
<Sha>bc35747acd136d5aca170df4ec527c346db76c8e</Sha>
52+
<Sha>834d09f0c963da37c88aed7ba3a83acafe582948</Sha>
5353
</Dependency>
5454
</ToolsetDependencies>
5555
</Dependencies>

eng/Versions.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<MicrosoftExtensionsLoggingVersion>7.0.0</MicrosoftExtensionsLoggingVersion>
2626
</PropertyGroup>
2727
<PropertyGroup Label="Dependencies from dotnet/arcade">
28-
<MicrosoftDotNetBuildTasksTemplatingVersion>7.0.0-beta.24171.2</MicrosoftDotNetBuildTasksTemplatingVersion>
28+
<MicrosoftDotNetBuildTasksTemplatingVersion>7.0.0-beta.24171.6</MicrosoftDotNetBuildTasksTemplatingVersion>
2929
</PropertyGroup>
3030
<PropertyGroup Label="Other dependencies">
3131
<!-- NB: Roslyn version affects the minimum required Visual Studio version -->
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
# Select a pool provider based off branch name. Anything with branch name containing 'release' must go into an -Svc pool,
2+
# otherwise it should go into the "normal" pools. This separates out the queueing and billing of released branches.
3+
4+
# Motivation:
5+
# Once a given branch of a repository's output has been officially "shipped" once, it is then considered to be COGS
6+
# (Cost of goods sold) and should be moved to a servicing pool provider. This allows both separation of queueing
7+
# (allowing release builds and main PR builds to not intefere with each other) and billing (required for COGS.
8+
# Additionally, the pool provider name itself may be subject to change when the .NET Core Engineering Services
9+
# team needs to move resources around and create new and potentially differently-named pools. Using this template
10+
# file from an Arcade-ified repo helps guard against both having to update one's release/* branches and renaming.
11+
12+
# How to use:
13+
# This yaml assumes your shipped product branches use the naming convention "release/..." (which many do).
14+
# If we find alternate naming conventions in broad usage it can be added to the condition below.
15+
#
16+
# First, import the template in an arcade-ified repo to pick up the variables, e.g.:
17+
#
18+
# variables:
19+
# - template: /eng/common/templates-official/variables/pool-providers.yml
20+
#
21+
# ... then anywhere specifying the pool provider use the runtime variables,
22+
# $(DncEngInternalBuildPool)
23+
#
24+
# pool:
25+
# name: $(DncEngInternalBuildPool)
26+
# image: 1es-windows-2022-pt
27+
28+
variables:
29+
# Coalesce the target and source branches so we know when a PR targets a release branch
30+
# If these variables are somehow missing, fall back to main (tends to have more capacity)
31+
32+
# Any new -Svc alternative pools should have variables added here to allow for splitting work
33+
34+
- name: DncEngInternalBuildPool
35+
value: $[
36+
replace(
37+
replace(
38+
eq(contains(coalesce(variables['System.PullRequest.TargetBranch'], variables['Build.SourceBranch'], 'refs/heads/main'), 'release'), 'true'),
39+
True,
40+
'NetCore1ESPool-Svc-Internal'
41+
),
42+
False,
43+
'NetCore1ESPool-Internal'
44+
)
45+
]

global.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"rollForward": "latestMajor"
99
},
1010
"msbuild-sdks": {
11-
"Microsoft.DotNet.Arcade.Sdk": "7.0.0-beta.24171.2",
12-
"Microsoft.DotNet.Helix.Sdk": "7.0.0-beta.24171.2"
11+
"Microsoft.DotNet.Arcade.Sdk": "7.0.0-beta.24171.6",
12+
"Microsoft.DotNet.Helix.Sdk": "7.0.0-beta.24171.6"
1313
}
1414
}

0 commit comments

Comments
 (0)