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:
authorSteve Pfister <steveisok@users.noreply.github.com>2021-11-02 04:57:37 +0300
committerGitHub <noreply@github.com>2021-11-02 04:57:37 +0300
commit90bec59c6aee4d22d94d946d5e52fac34d355827 (patch)
treec8f5ce398099343c522429478fc854f93426309f /eng/pipelines/common/xplat-setup.yml
parent1d08e154b942a41e72cbe044e01fff8b13c74496 (diff)
Make sure smoke tests aren't run on the rolling build (#61055)
The way we were trying to use isFullMatrix was not visible to the xplat-setup template. This PR makes sure we grab the value at run time as opposed to compile time.
Diffstat (limited to 'eng/pipelines/common/xplat-setup.yml')
-rw-r--r--eng/pipelines/common/xplat-setup.yml6
1 files changed, 1 insertions, 5 deletions
diff --git a/eng/pipelines/common/xplat-setup.yml b/eng/pipelines/common/xplat-setup.yml
index c8043098c31..f82aaa8f5ee 100644
--- a/eng/pipelines/common/xplat-setup.yml
+++ b/eng/pipelines/common/xplat-setup.yml
@@ -50,11 +50,7 @@ jobs:
value: $(buildConfigUpper)
- name: _runSmokeTestsOnlyArg
- ${{ if ne(variables['nonPRBuild'], true) }}:
- value: /p:RunSmokeTestsOnly=true
- ${{ if eq(variables['nonPRBuild'], true) }}:
- value: ''
-
+ value: '/p:RunSmokeTestsOnly=$(isNotFullMatrix)'
- ${{ if or(eq(parameters.osGroup, 'windows'), eq(parameters.hostedOs, 'windows')) }}:
- name: archiveExtension
value: '.zip'