Skip to content

Commit fc35934

Browse files
authored
Use isRollingBuild variable instead of removed isFullMatrix in pipelines (#93201)
isFullMatrix was replaced by isRollingBuild in #62564, but we missed a couple places.
1 parent 2e3a811 commit fc35934

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

eng/pipelines/libraries/helix-queues-setup.yml

-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ jobs:
3232

3333
# Linux armv6
3434
- ${{ if eq(parameters.platform, 'linux_armv6') }}:
35-
# - ${{ if eq(parameters.jobParameters.isFullMatrix, true) }}:
3635
- (Raspbian.10.Armv6.Open)Ubuntu.1804.ArmArch.Open@mcr.microsoft.com/dotnet-buildtools/prereqs:raspbian-10-helix-arm32v6
3736

3837
# Linux arm64

eng/pipelines/runtime.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ extends:
271271
or(
272272
eq(dependencies.evaluate_paths.outputs['SetPathVars_coreclr.containsChange'], true),
273273
eq(dependencies.evaluate_paths.outputs['SetPathVars_runtimetests.containsChange'], true),
274-
eq(variables['isFullMatrix'], true))
274+
eq(variables['isRollingBuild'], true))
275275
276276
#
277277
# CoreCLR NativeAOT checked build and smoke tests
@@ -309,7 +309,7 @@ extends:
309309
or(
310310
eq(dependencies.evaluate_paths.outputs['SetPathVars_coreclr.containsChange'], true),
311311
eq(dependencies.evaluate_paths.outputs['SetPathVars_runtimetests.containsChange'], true),
312-
eq(variables['isFullMatrix'], true))
312+
eq(variables['isRollingBuild'], true))
313313
314314
#
315315
# CoreCLR NativeAOT release build and smoke tests
@@ -353,7 +353,7 @@ extends:
353353
or(
354354
eq(dependencies.evaluate_paths.outputs['SetPathVars_coreclr.containsChange'], true),
355355
eq(dependencies.evaluate_paths.outputs['SetPathVars_runtimetests.containsChange'], true),
356-
eq(variables['isFullMatrix'], true))
356+
eq(variables['isRollingBuild'], true))
357357
358358
#
359359
# CoreCLR NativeAOT release build and libraries tests
@@ -384,7 +384,7 @@ extends:
384384
or(
385385
eq(dependencies.evaluate_paths.outputs['SetPathVars_libraries.containsChange'], true),
386386
eq(dependencies.evaluate_paths.outputs['SetPathVars_coreclr.containsChange'], true),
387-
eq(variables['isFullMatrix'], true))
387+
eq(variables['isRollingBuild'], true))
388388
389389
# Build and test clr tools
390390
- template: /eng/pipelines/common/platform-matrix.yml

0 commit comments

Comments
 (0)