diff --git a/eng/pipelines/runtime-extra-platforms-other.yml b/eng/pipelines/runtime-extra-platforms-other.yml index 1c74613336f3a4..c3618a92f081f9 100644 --- a/eng/pipelines/runtime-extra-platforms-other.yml +++ b/eng/pipelines/runtime-extra-platforms-other.yml @@ -469,7 +469,7 @@ jobs: condition: >- or( eq(dependencies.evaluate_paths.outputs['SetPathVars_libraries.containsChange'], true), - eq($(nonWasmRuntimeTestsContainsChange), true), + eq(variables['nonWasmRuntimeTestsContainsChange'], true), eq(dependencies.evaluate_paths.outputs['SetPathVars_mono_excluding_wasm.containsChange'], true), eq(variables['isRollingBuild'], true)) @@ -488,7 +488,7 @@ jobs: condition: >- or( eq(dependencies.evaluate_paths.outputs['SetPathVars_mono_excluding_wasm.containsChange'], true), - eq($(nonWasmRuntimeTestsContainsChange), true), + eq(variables['nonWasmRuntimeTestsContainsChange'], true), eq(variables['isRollingBuild'], true)) # @@ -521,7 +521,7 @@ jobs: condition: >- or( eq(dependencies.evaluate_paths.outputs['SetPathVars_mono_excluding_wasm.containsChange'], true), - eq($(nonWasmRuntimeTestsContainsChange), true), + eq(variables['nonWasmRuntimeTestsContainsChange'], true), eq(variables['isRollingBuild'], true)) # extra steps, run tests extraStepsTemplate: /eng/pipelines/common/templates/runtimes/android-runtime-and-send-to-helix.yml @@ -559,7 +559,7 @@ jobs: runtimeVariant: monointerpreter condition: >- or( - eq($(nonWasmRuntimeTestsContainsChange), true), + eq(variables['nonWasmRuntimeTestsContainsChange'], true), eq(dependencies.evaluate_paths.outputs['SetPathVars_mono_excluding_wasm.containsChange'], true), eq(variables['isRollingBuild'], true)) # extra steps, run tests @@ -597,7 +597,7 @@ jobs: timeoutInMinutes: 240 condition: >- or( - eq($(nonWasmRuntimeTestsContainsChange), true), + eq(variables['nonWasmRuntimeTestsContainsChange'], true), eq(dependencies.evaluate_paths.outputs['SetPathVars_mono_excluding_wasm.containsChange'], true), eq(variables['isRollingBuild'], true)) # don't run tests on PRs until we can get significantly more devices @@ -629,7 +629,7 @@ jobs: condition: >- or( eq(dependencies.evaluate_paths.outputs['SetPathVars_mono_excluding_wasm.containsChange'], true), - eq($(nonWasmRuntimeTestsContainsChange), true), + eq(variables['nonWasmRuntimeTestsContainsChange'], true), eq(variables['isRollingBuild'], true)) # @@ -652,5 +652,5 @@ jobs: condition: >- or( eq(dependencies.evaluate_paths.outputs['SetPathVars_mono_excluding_wasm.containsChange'], true), - eq($(nonWasmRuntimeTestsContainsChange), true), + eq(variables['nonWasmRuntimeTestsContainsChange'], true), eq(variables['isRollingBuild'], true)) diff --git a/eng/pipelines/runtime-llvm.yml b/eng/pipelines/runtime-llvm.yml index 9a501deaf1a59e..3033f05681e607 100644 --- a/eng/pipelines/runtime-llvm.yml +++ b/eng/pipelines/runtime-llvm.yml @@ -159,7 +159,7 @@ jobs: runtimeVariant: llvmaot condition: >- or( - eq($(nonWasmRuntimeTestsContainsChange), true), + eq(variables['nonWasmRuntimeTestsContainsChange'], true), eq(dependencies.evaluate_paths.outputs['SetPathVars_mono_excluding_wasm.containsChange'], true), eq(variables['isRollingBuild'], true)) @@ -186,7 +186,7 @@ jobs: condition: >- or( eq(dependencies.evaluate_paths.outputs['SetPathVars_mono_excluding_wasm.containsChange'], true), - eq($(nonWasmRuntimeTestsContainsChange), true), + eq(variables['nonWasmRuntimeTestsContainsChange'], true), eq(variables['isRollingBuild'], true)) # @@ -211,5 +211,5 @@ jobs: condition: >- or( eq(dependencies.evaluate_paths.outputs['SetPathVars_mono_excluding_wasm.containsChange'], true), - eq($(nonWasmRuntimeTestsContainsChange), true), + eq(variables['nonWasmRuntimeTestsContainsChange'], true), eq(variables['isRollingBuild'], true)) diff --git a/eng/pipelines/runtime-staging.yml b/eng/pipelines/runtime-staging.yml index 92835cb934066f..bdf8e8c9ad10ba 100644 --- a/eng/pipelines/runtime-staging.yml +++ b/eng/pipelines/runtime-staging.yml @@ -87,7 +87,7 @@ jobs: timeoutInMinutes: 240 condition: >- or( - eq($(nonWasmRuntimeTestsContainsChange), true), + eq(variables['nonWasmRuntimeTestsContainsChange'], true), eq(dependencies.evaluate_paths.outputs['SetPathVars_mono_excluding_wasm.containsChange'], true), eq(variables['isRollingBuild'], true)) ${{ if eq(variables['isRollingBuild'], true) }}: diff --git a/eng/pipelines/runtime.yml b/eng/pipelines/runtime.yml index a6a5c0127d51b0..075e4abd4b5fbc 100644 --- a/eng/pipelines/runtime.yml +++ b/eng/pipelines/runtime.yml @@ -94,7 +94,7 @@ jobs: condition: >- or( eq(dependencies.evaluate_paths.outputs['SetPathVars_coreclr.containsChange'], true), - eq($(nonWasmRuntimeTestsContainsChange), true), + eq(variables['nonWasmRuntimeTestsContainsChange'], true), eq(variables['isRollingBuild'], true)) # @@ -117,7 +117,7 @@ jobs: eq(dependencies.evaluate_paths.outputs['SetPathVars_mono_excluding_wasm.containsChange'], true), eq(dependencies.evaluate_paths.outputs['SetPathVars_libraries.containsChange'], true), eq(dependencies.evaluate_paths.outputs['SetPathVars_installer.containsChange'], true), - eq($(nonWasmRuntimeTestsContainsChange), true), + eq(variables['nonWasmRuntimeTestsContainsChange'], true), eq(variables['isRollingBuild'], true)) # @@ -136,7 +136,7 @@ jobs: or( eq(dependencies.evaluate_paths.outputs['SetPathVars_coreclr.containsChange'], true), eq(dependencies.evaluate_paths.outputs['SetPathVars_libraries.containsChange'], true), - eq($(nonWasmRuntimeTestsContainsChange), true), + eq(variables['nonWasmRuntimeTestsContainsChange'], true), eq(variables['isRollingBuild'], true)) # @@ -210,7 +210,7 @@ jobs: condition: >- or( eq(dependencies.evaluate_paths.outputs['SetPathVars_coreclr.containsChange'], true), - eq($(nonWasmRuntimeTestsContainsChange), true), + eq(variables['nonWasmRuntimeTestsContainsChange'], true), eq(variables['isFullMatrix'], true)) # @@ -232,7 +232,7 @@ jobs: condition: >- or( eq(dependencies.evaluate_paths.outputs['SetPathVars_coreclr.containsChange'], true), - eq($(nonWasmRuntimeTestsContainsChange), true), + eq(variables['nonWasmRuntimeTestsContainsChange'], true), eq(variables['isFullMatrix'], true)) # @@ -256,7 +256,7 @@ jobs: condition: >- or( eq(dependencies.evaluate_paths.outputs['SetPathVars_coreclr.containsChange'], true), - eq($(nonWasmRuntimeTestsContainsChange), true), + eq(variables['nonWasmRuntimeTestsContainsChange'], true), eq(variables['isFullMatrix'], true)) # @@ -750,7 +750,7 @@ jobs: condition: >- or( eq(dependencies.evaluate_paths.outputs['SetPathVars_libraries.containsChange'], true), - eq($(nonWasmRuntimeTestsContainsChange), true), + eq(variables['nonWasmRuntimeTestsContainsChange'], true), eq(dependencies.evaluate_paths.outputs['SetPathVars_mono_excluding_wasm.containsChange'], true), eq(variables['isRollingBuild'], true)) @@ -770,7 +770,7 @@ jobs: runtimeVariant: llvmaot condition: >- or( - eq($(nonWasmRuntimeTestsContainsChange), true), + eq(variables['nonWasmRuntimeTestsContainsChange'], true), eq(dependencies.evaluate_paths.outputs['SetPathVars_mono_excluding_wasm.containsChange'], true), eq(variables['isRollingBuild'], true)) @@ -938,7 +938,7 @@ jobs: condition: >- or( eq(dependencies.evaluate_paths.outputs['SetPathVars_coreclr.containsChange'], true), - eq($(nonWasmRuntimeTestsContainsChange), true), + eq(variables['nonWasmRuntimeTestsContainsChange'], true), eq(variables['isRollingBuild'], true)) # @@ -961,7 +961,7 @@ jobs: condition: >- or( eq(dependencies.evaluate_paths.outputs['SetPathVars_coreclr.containsChange'], true), - eq($(nonWasmRuntimeTestsContainsChange), true), + eq(variables['nonWasmRuntimeTestsContainsChange'], true), eq(variables['isRollingBuild'], true)) - template: /eng/pipelines/common/platform-matrix.yml @@ -981,7 +981,7 @@ jobs: condition: >- or( eq(dependencies.evaluate_paths.outputs['SetPathVars_coreclr.containsChange'], true), - eq($(nonWasmRuntimeTestsContainsChange), true), + eq(variables['nonWasmRuntimeTestsContainsChange'], true), eq(variables['isRollingBuild'], true)) - template: /eng/pipelines/common/platform-matrix.yml @@ -1015,7 +1015,7 @@ jobs: condition: >- or( eq(dependencies.evaluate_paths.outputs['SetPathVars_mono_excluding_wasm.containsChange'], true), - eq($(nonWasmRuntimeTestsContainsChange), true), + eq(variables['nonWasmRuntimeTestsContainsChange'], true), eq(variables['isRollingBuild'], true)) # @@ -1039,7 +1039,7 @@ jobs: condition: >- or( eq(dependencies.evaluate_paths.outputs['SetPathVars_mono_excluding_wasm.containsChange'], true), - eq($(nonWasmRuntimeTestsContainsChange), true), + eq(variables['nonWasmRuntimeTestsContainsChange'], true), eq(variables['isRollingBuild'], true)) # @@ -1062,7 +1062,7 @@ jobs: condition: >- or( eq(dependencies.evaluate_paths.outputs['SetPathVars_mono_excluding_wasm.containsChange'], true), - eq($(nonWasmRuntimeTestsContainsChange), true), + eq(variables['nonWasmRuntimeTestsContainsChange'], true), eq(variables['isRollingBuild'], true)) # # Mono CoreCLR runtime Test executions using live libraries and LLVM AOT @@ -1087,7 +1087,7 @@ jobs: condition: >- or( eq(dependencies.evaluate_paths.outputs['SetPathVars_mono_excluding_wasm.containsChange'], true), - eq($(nonWasmRuntimeTestsContainsChange), true), + eq(variables['nonWasmRuntimeTestsContainsChange'], true), eq(variables['isRollingBuild'], true)) # @@ -1112,7 +1112,7 @@ jobs: condition: >- or( eq(dependencies.evaluate_paths.outputs['SetPathVars_mono_excluding_wasm.containsChange'], true), - eq($(nonWasmRuntimeTestsContainsChange), true), + eq(variables['nonWasmRuntimeTestsContainsChange'], true), eq(variables['isRollingBuild'], true)) #