diff --git a/eng/pipelines/common/templates/runtimes/run-test-job.yml b/eng/pipelines/common/templates/runtimes/run-test-job.yml index fa6b9cb15b70ba..c40551733722fb 100644 --- a/eng/pipelines/common/templates/runtimes/run-test-job.yml +++ b/eng/pipelines/common/templates/runtimes/run-test-job.yml @@ -97,6 +97,8 @@ jobs: - ${{ if eq(parameters.compositeBuildMode, true) }}: - name: crossgenArg value: 'composite' + - name: LogNamePrefix + value: TestRunLogs_R2R_CG2_Composite # Set job timeouts # diff --git a/eng/pipelines/coreclr/templates/crossgen2-comparison-build-job.yml b/eng/pipelines/coreclr/templates/crossgen2-comparison-build-job.yml index 553131f6259199..eb927ec63aef93 100644 --- a/eng/pipelines/coreclr/templates/crossgen2-comparison-build-job.yml +++ b/eng/pipelines/coreclr/templates/crossgen2-comparison-build-job.yml @@ -76,7 +76,7 @@ jobs: - name: crossgen2location value: $(productDirectory)$(dir)$(targetFlavor)$(dir)x64$(dir)crossgen2$(dir)crossgen2.dll - name: librariesProductDllDir - value: $(Build.SourcesDirectory)$(dir)artifacts$(dir)bin$(dir)runtime$(dir)net5.0-$(osGroup)$(osSubgroup)-$(buildConfig)-$(archType) + value: $(Build.SourcesDirectory)$(dir)artifacts$(dir)bin$(dir)runtime$(dir)net6.0-$(osGroup)$(osSubgroup)-$(buildConfig)-$(archType) - ${{ parameters.variables }} @@ -124,6 +124,7 @@ jobs: cp $(librariesProductDllDir)/* $(workItemDirectory)/dlls cp $(productDirectory)/$(targetFlavor)/IL/System.Private.CoreLib.dll $(workItemDirectory)/dlls displayName: Create directories + failOnStderr: true - ${{ if eq(parameters.osGroup, 'Windows_NT') }}: - script: | md $(workItemDirectory)\log @@ -133,6 +134,7 @@ jobs: echo copy $(productDirectory)\$(targetFlavor)\IL\System.Private.CoreLib.dll $(workItemDirectory)\dlls copy $(productDirectory)\$(targetFlavor)\IL\System.Private.CoreLib.dll $(workItemDirectory)\dlls displayName: Create directories + failOnStderr: true # Create baseline output on the host (x64) machine - task: PythonScript@0