From 72ebebf998c20af3e992d0d3613c7ab0d69c58d3 Mon Sep 17 00:00:00 2001 From: Aaron Robinson Date: Thu, 10 Oct 2024 09:56:45 -0700 Subject: [PATCH] Update runtimelab pipeline (#108754) --- eng/pipelines/runtimelab.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/eng/pipelines/runtimelab.yml b/eng/pipelines/runtimelab.yml index 7e0aaeab20721..d833780f24f8e 100644 --- a/eng/pipelines/runtimelab.yml +++ b/eng/pipelines/runtimelab.yml @@ -62,12 +62,14 @@ extends: - windows_x64 jobParameters: timeoutInMinutes: 200 - buildArgs: -s clr+libs+hosts+packs -c debug -rc $(_BuildConfig) + buildArgs: -s clr+libs+clr.hosts+packs -c debug -rc $(_BuildConfig) postBuildSteps: - template: /eng/pipelines/common/templates/runtimes/build-runtime-tests-and-send-to-helix.yml parameters: creator: dotnet-bot testRunNamePrefixSuffix: CoreCLR_$(_BuildConfig) + extraVariablesTemplates: + - template: /eng/pipelines/common/templates/runtimes/test-variables.yml # # Build the whole product with Release CoreCLR and run libraries tests @@ -82,12 +84,14 @@ extends: - windows_x64 jobParameters: timeoutInMinutes: 180 - buildArgs: -s clr+libs+libs.tests+hosts+packs -c $(_BuildConfig) /p:ArchiveTests=true + buildArgs: -s clr+libs+libs.tests+clr.hosts+packs -c $(_BuildConfig) /p:ArchiveTests=true postBuildSteps: - template: /eng/pipelines/libraries/helix.yml parameters: creator: dotnet-bot testRunNamePrefixSuffix: Libraries_$(_BuildConfig) + extraVariablesTemplates: + - template: /eng/pipelines/common/templates/runtimes/test-variables.yml # # Build and test libraries AllConfigurations @@ -102,3 +106,5 @@ extends: buildArgs: -test -s tools+libs+libs.tests -allConfigurations -c $(_BuildConfig) /p:TestAssemblies=false /p:TestPackages=true nameSuffix: Libraries_AllConfigurations timeoutInMinutes: 150 + extraVariablesTemplates: + - template: /eng/pipelines/common/templates/runtimes/test-variables.yml