aboutsummaryrefslogtreecommitdiffstats
path: root/.ci/templates/stages-uhd-pipeline.yml
diff options
context:
space:
mode:
Diffstat (limited to '.ci/templates/stages-uhd-pipeline.yml')
-rw-r--r--.ci/templates/stages-uhd-pipeline.yml16
1 files changed, 16 insertions, 0 deletions
diff --git a/.ci/templates/stages-uhd-pipeline.yml b/.ci/templates/stages-uhd-pipeline.yml
index f5ff5c227..a67dbed97 100644
--- a/.ci/templates/stages-uhd-pipeline.yml
+++ b/.ci/templates/stages-uhd-pipeline.yml
@@ -14,6 +14,11 @@ parameters:
- name: release_binaries
type: boolean
default: false
+- name: testLength
+ type: string
+- name: run_streaming_tests
+ type: boolean
+ default: false
variables:
- template: ../uhd-pipeline-vars.yml
@@ -71,3 +76,14 @@ stages:
parameters:
testOS: ubuntu2004
uhdSrcDir: $(Build.SourcesDirectory)
+
+- stage: test_streaming_stage
+ displayName: Test UHD Streaming
+ dependsOn: build_uhd_stage
+ condition: and(succeeded('build_uhd_stage'), ${{ parameters.run_streaming_tests }})
+ jobs:
+ - template: job-uhd-streaming-tests-beauty.yml
+ parameters:
+ testOS: ubuntu2004
+ uhdSrcDir: $(Build.SourcesDirectory)
+ testLength: ${{ parameters.testLength }} \ No newline at end of file