Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Köplinger <alex.koeplinger@outlook.com>2020-04-11 00:09:50 +0300
committerGitHub <noreply@github.com>2020-04-11 00:09:50 +0300
commit2cb8685cb13ecad8bc9f3d06bbaff1adb9dca800 (patch)
tree88eb3b6923d3ccfb1641bf9e3cf96150d3b188c2 /eng/pipelines/installer
parent1b79b46bf63b9632d05f9ffbbdd3e92b33c4b057 (diff)
Fix installer CI job warnings for iOS/tvOS/Android (#34763)
We don't run tests in the installer for these OSes so the PublishTestResults task complains about missing *.xml result files.
Diffstat (limited to 'eng/pipelines/installer')
-rw-r--r--eng/pipelines/installer/jobs/base-job.yml1
1 files changed, 1 insertions, 0 deletions
diff --git a/eng/pipelines/installer/jobs/base-job.yml b/eng/pipelines/installer/jobs/base-job.yml
index acc8c930dd8..3a6494b0b23 100644
--- a/eng/pipelines/installer/jobs/base-job.yml
+++ b/eng/pipelines/installer/jobs/base-job.yml
@@ -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, '')) }}