Skip to content

Commit 38eebd9

Browse files
github-actions[bot]hoyosjsakoeplinger
authored
[release/8.0] Change pool for evaluate-paths (#123462)
Backport of #123450 to release/8.0 /cc @lewing @hoyosjs ## Customer Impact - [ ] Customer reported - [ ] Found internally [Select one or both of the boxes. Describe how this issue impacts customers, citing the expected and actual behaviors and scope of the issue. If customer-reported, provide the issue number.] ## Regression - [ ] Yes - [ ] No [If yes, specify when the regression was introduced. Provide the PR or commit if known.] ## Testing [How was the fix verified? How was the issue missed previously? What tests were added?] ## Risk [High/Medium/Low. Justify the indication by mentioning how risks were measured and addressed.] **IMPORTANT**: If this backport is for a servicing release, please verify that: - For .NET 8 and .NET 9: The PR target branch is `release/X.0-staging`, not `release/X.0`. - For .NET 10+: The PR target branch is `release/X.0` (no `-staging` suffix). ## Package authoring no longer needed in .NET 9 **IMPORTANT**: Starting with .NET 9, you no longer need to edit a NuGet package's csproj to enable building and bump the version. Keep in mind that we still need package authoring in .NET 8 and older versions. --------- Co-authored-by: Juan Hoyos <19413848+hoyosjs@users.noreply.github.com> Co-authored-by: Alexander Köplinger <alex.koeplinger@outlook.com>
1 parent b43df22 commit 38eebd9

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

eng/pipelines/common/evaluate-paths-job.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,13 @@ jobs:
2828
- job: evaluate_paths
2929
displayName: Evaluate Paths
3030
pool:
31-
vmImage: 'ubuntu-latest'
31+
${{ if eq(variables['System.TeamProject'], 'public') }}:
32+
name: $(DncEngPublicBuildPool)
33+
demands: ImageOverride -equals Azure-Linux-3-Amd64-Public
34+
${{ else }}:
35+
name: $(DncEngInternalBuildPool)
36+
demands: ImageOverride -equals Azure-Linux-3-Amd64
37+
os: linux
3238

3339
steps:
3440
- checkout: self

0 commit comments

Comments
 (0)