Skip to content

Commit 63f1468

Browse files
authored
Merge branch 'release-network-2025-07-01' into irramtir/RouteMapsForRouteServer
2 parents 5ef1209 + 7ea9789 commit 63f1468

6,252 files changed

Lines changed: 895879 additions & 313084 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.azure-pipelines/daily-build.yml

Lines changed: 0 additions & 229 deletions
This file was deleted.

.azure-pipelines/live-test.yml

Lines changed: 23 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,10 @@ variables:
1919
win_ps_5_1: 5.1
2020
ps_7_4_x: 7.4.*
2121
ps_7_5_x: 7.5.*
22-
ps_latest: latest
22+
ps_7_6_x: 7.6.*
2323
dotnet_sdk_8: 8.x
2424
dotnet_sdk_9: 9.x
25+
dotnet_sdk_10: 10.x
2526
ArtifactsName: LiveTestArtifacts
2627
DataLocation: $(Pipeline.Workspace)/$(ArtifactsName)
2728
SuppressAzurePowerShellBreakingChangeWarnings: true
@@ -65,11 +66,11 @@ stages:
6566

6667
- template: util/live-test-steps.yml
6768
parameters:
68-
name: 'ps_latest_windows'
69+
name: 'ps_7_6_x_windows'
6970
vmImage: ${{ variables.os_windows }}
7071
osType: 'Windows'
71-
psVersion: ${{ variables.ps_latest }}
72-
dotnetVersion: ${{ variables.dotnet_sdk_9 }}
72+
psVersion: ${{ variables.ps_7_6_x }}
73+
dotnetVersion: ${{ variables.dotnet_sdk_10 }}
7374
galleryName: ${{ parameters.GalleryName }}
7475
pipelineBuildId: ${{ parameters.PipelineBuildId }}
7576

@@ -95,11 +96,11 @@ stages:
9596

9697
- template: util/live-test-steps.yml
9798
parameters:
98-
name: 'ps_latest_linux'
99+
name: 'ps_7_6_x_linux'
99100
vmImage: ${{ variables.os_linux }}
100101
osType: 'Linux'
101-
psVersion: ${{ variables.ps_latest }}
102-
dotnetVersion: ${{ variables.dotnet_sdk_9 }}
102+
psVersion: ${{ variables.ps_7_6_x }}
103+
dotnetVersion: ${{ variables.dotnet_sdk_10 }}
103104
galleryName: ${{ parameters.GalleryName }}
104105
pipelineBuildId: ${{ parameters.PipelineBuildId }}
105106

@@ -125,14 +126,26 @@ stages:
125126

126127
- template: util/live-test-steps.yml
127128
parameters:
128-
name: 'ps_latest_macos'
129+
name: 'ps_7_6_x_macos'
129130
vmImage: ${{ variables.os_macos }}
130131
osType: 'MacOS'
131-
psVersion: ${{ variables.ps_latest }}
132-
dotnetVersion: ${{ variables.dotnet_sdk_9 }}
132+
psVersion: ${{ variables.ps_7_6_x }}
133+
dotnetVersion: ${{ variables.dotnet_sdk_10 }}
133134
galleryName: ${{ parameters.GalleryName }}
134135
pipelineBuildId: ${{ parameters.PipelineBuildId }}
135136

137+
- job: CheckLatestPowerShellVersion
138+
displayName: Check for latest PowerShell version
139+
pool:
140+
vmImage: ${{ variables.os_linux }}
141+
steps:
142+
- task: PowerShell@2
143+
displayName: Check for latest PowerShell version
144+
inputs:
145+
pwsh: true
146+
targetType: filePath
147+
filePath: ./tools/TestFx/Live/CheckLatestPowerShellVersion.ps1
148+
136149
- stage: Report
137150
displayName: Send Report
138151
condition: always()

0 commit comments

Comments
 (0)