Fix installer CI job warnings for iOS/tvOS/Android (#34763)
authorAlexander Köplinger <alex.koeplinger@outlook.com>
Fri, 10 Apr 2020 21:09:50 +0000 (23:09 +0200)
committerGitHub <noreply@github.com>
Fri, 10 Apr 2020 21:09:50 +0000 (23:09 +0200)
We don't run tests in the installer for these OSes so the PublishTestResults task complains about missing *.xml result files.

eng/pipelines/installer/jobs/base-job.yml

index acc8c93..3a6494b 100644 (file)
@@ -65,6 +65,7 @@ jobs:
   - name: SkipTests
     value: ${{ or(
       not(in(parameters.archType, 'x64', 'x86')),
+      in(parameters.osGroup, 'iOS', 'tvOS', 'Android'),
       eq(parameters.isOfficialBuild, true),
       ne(parameters.crossrootfsDir, '')) }}