Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions eng/pipelines/runtime-linker-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ extends:
jobParameters:
testGroup: innerloop
enablePublishTestResults: true
testResultsFormat: 'xunit'
timeoutInMinutes: 120
nameSuffix: ILLink_Tests
condition:
Expand All @@ -86,6 +87,17 @@ extends:
postBuildSteps:
- script: $(Build.SourcesDirectory)$(dir)build$(scriptExt) -ci -arch $(archType) $(_osParameter) -s tools.illinktests -test -c $(_BuildConfig) $(crossArg) $(_officialBuildParameter) /p:ToolsConfiguration=Debug
displayName: Run ILLink Tests
# The illink tools and tests build as Debug (ToolsConfiguration=Debug), so arcade writes
# their xUnit results to artifacts/TestResults/Debug. The publish step searches
# artifacts/TestResults/$(_BuildConfig) (Release), so copy the results across to get them
# published. Runs even on test failure so failures still surface in the Tests tab.
- task: CopyFiles@2
displayName: Copy ILLink test results for publishing
condition: succeededOrFailed()
inputs:
sourceFolder: $(Build.SourcesDirectory)/artifacts/TestResults/Debug
contents: '**/*.xml'
targetFolder: $(Build.SourcesDirectory)/artifacts/TestResults/$(_BuildConfig)
Comment thread
akoeplinger marked this conversation as resolved.

#
# Build Release config vertical for Windows and Linux
Expand Down
Loading