-
Notifications
You must be signed in to change notification settings - Fork 5.2k
Closed
Labels
Description
It seems that we skip to upload the "native test components" because of which all the test jobs in outerloop-nightly fails because it tries to download those artifacts but doesn't find it. The conditions to skip uploading seems legitimate, so not sure if we should skip downloading them as well with the same conditions check.
runtime/eng/pipelines/coreclr/templates/build-job.yml
Lines 294 to 305 in c3a2bce
| - ${{ if and(ne(parameters.compilerName, 'gcc'), ne(parameters.testGroup, ''), ne(parameters.testGroup, 'clrTools'), ne(parameters.disableClrTest, true)) }}: | |
| # Publish test native components for consumption by test execution. | |
| - ${{ if and(ne(parameters.isOfficialBuild, true), eq(parameters.pgoType, '')) }}: | |
| - template: /eng/pipelines/common/upload-artifact-step.yml | |
| parameters: | |
| rootFolder: $(nativeTestArtifactRootFolderPath) | |
| includeRootFolder: false | |
| archiveType: $(archiveType) | |
| tarCompression: $(tarCompression) | |
| archiveExtension: $(archiveExtension) | |
| artifactName: $(nativeTestArtifactName) | |
| displayName: 'native test components' |
vs.
and the download job for native test components keep failing.


