aboutsummaryrefslogtreecommitdiffstats
path: root/.ci/uhd-pipeline.yml
diff options
context:
space:
mode:
authorMartin Braun <martin.braun@ettus.com>2023-06-14 11:07:47 +0200
committerAki Tomita <121511582+atomita-ni@users.noreply.github.com>2023-07-14 13:38:44 -0500
commitd4d57f7980ca1e90ae5621dbec607aa839dd7281 (patch)
treed82889b509b4b334e3967059ef18ec01a9f3fb45 /.ci/uhd-pipeline.yml
parenttools: Add changeset analyzer (diff)
downloaduhd-d4d57f7980ca1e90ae5621dbec607aa839dd7281.tar.xz
uhd-d4d57f7980ca1e90ae5621dbec607aa839dd7281.zip
ci: Auto-detect conditionals for pipeline stages
- Runs changeset_testlist.py on pull requests to see what changed - This will conditionally compute a test list - Tests are now conditionally executed
Diffstat (limited to '.ci/uhd-pipeline.yml')
-rw-r--r--.ci/uhd-pipeline.yml22
1 files changed, 16 insertions, 6 deletions
diff --git a/.ci/uhd-pipeline.yml b/.ci/uhd-pipeline.yml
index 9822d1739..68fa9eba2 100644
--- a/.ci/uhd-pipeline.yml
+++ b/.ci/uhd-pipeline.yml
@@ -6,17 +6,26 @@
parameters:
- name: build_linux
- type: boolean
displayName: Build Linux
- default: true
+ type: string
+ default: Force-yes
+ values:
+ - Force-yes
+ - No
- name: build_mac
- type: boolean
displayName: Build macOS
- default: true
+ type: string
+ default: Force-yes
+ values:
+ - Force-yes
+ - No
- name: build_win
- type: boolean
displayName: Build Windows
- default: true
+ type: string
+ default: Force-yes
+ values:
+ - Force-yes
+ - No
- name: release_binaries
type: boolean
displayName: Set release mode for installers
@@ -105,3 +114,4 @@ extends:
build_n3xx: ${{ parameters.build_n3xx }}
build_x4xx: ${{ parameters.build_x4xx }}
fpga_imgs_base_url: ${{ parameters.fpga_imgs_base_url }}
+ skip_analyze_changeset: true