blob: dd713154d46bcaa5c8f8c8507514124f059f1e50 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
trigger: none
pr: none
parameters:
- name: run_hardware_tests
type: boolean
displayName: Run Hardware Tests
default: false
- name: run_streaming_tests
type: boolean
displayName: Run Streaming Tests
default: false
- name: run_devtests
type: boolean
displayName: Run devtests
default: false
- name: testLength
type: string
values:
- 'smoke'
- 'full'
- 'stress'
resources:
pipelines:
- pipeline: uhd_mono_pipeline
source: 'uhddev mono pipeline'
branch: master
- pipeline: usrp-kas-pipeline
source: 'usrp-kas'
branch: zeus-ci
repositories:
- repository: meta-ettus
type: github
name: EttusResearch/meta-ettus-dev
endpoint: EttusResearch
ref: refs/tags/v4.2.0.0
- repository: gr-ettus
type: github
name: EttusResearch/gr-ettusdev
endpoint: EttusResearch
ref: maint-3.8-uhd4.0
- repository: ettus-rts
type: github
endpoint: EttusResearch
name: EttusResearch/ettus-rts
ref: master
stages:
- stage: test_uhd_embedded_stage
displayName: Test Embedded UHD
dependsOn: []
condition: ${{ parameters.run_hardware_tests }}
jobs:
- template: templates/tests/job-uhd-x4xx-hardware-tests-sdr-test0.yml
parameters:
testOS: ubuntu1804
uhdArtifactSource: uhd_mono_pipeline
- template: templates/tests/job-uhd-x4xx-hardware-tests-pebbles.yml
parameters:
testOS: ubuntu1804
uhdArtifactSource: uhd_mono_pipeline
- stage: test_streaming_stage
displayName: Test UHD Streaming
dependsOn: []
condition: ${{ parameters.run_streaming_tests }}
jobs:
- template: templates/job-uhd-streaming-tests-beauty.yml
parameters:
testOS: ubuntu2004
uhdSrcDir: $(Build.SourcesDirectory)/uhddev
uhdArtifactSource: uhd_mono_pipeline
testLength: ${{ parameters.testLength }}
- stage: test_uhd_devtest
displayName: Test UHD Devtest
dependsOn: []
condition: ${{ parameters.run_devtests }}
jobs:
- template: templates/job-uhd-devtest-rhombus.yml
parameters:
testOS: ubuntu2004
uhdSrcDir: $(Build.SourcesDirectory)
uhdArtifactSource: uhd_mono_pipeline
|