diff options
author | mattprost <matt.prost@ni.com> | 2022-01-12 14:37:02 -0600 |
---|---|---|
committer | Aaron Rossetto <aaron.rossetto@ni.com> | 2022-01-14 09:50:36 -0600 |
commit | f2904bfbd4b16c994550da583dba88cc551d8e6a (patch) | |
tree | 4f8ca048e0885062f18c2de27f76ae3a5db3407d /.ci/uhd-pipeline-pr.yml | |
parent | ee8e4f2c9b1bae8085dff6199c2bade0914748f7 (diff) | |
download | uhd-f2904bfbd4b16c994550da583dba88cc551d8e6a.tar.gz uhd-f2904bfbd4b16c994550da583dba88cc551d8e6a.tar.bz2 uhd-f2904bfbd4b16c994550da583dba88cc551d8e6a.zip |
ci: Separate pipeline builds for different os
This allows parameterizing pipeline runs to only build for certain os.
Signed-off-by: mattprost <matt.prost@ni.com>
Diffstat (limited to '.ci/uhd-pipeline-pr.yml')
-rw-r--r-- | .ci/uhd-pipeline-pr.yml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/.ci/uhd-pipeline-pr.yml b/.ci/uhd-pipeline-pr.yml index 4e66eec06..430b7001a 100644 --- a/.ci/uhd-pipeline-pr.yml +++ b/.ci/uhd-pipeline-pr.yml @@ -5,6 +5,15 @@ # parameters: +- name: build_linux + type: boolean + default: true +- name: build_mac + type: boolean + default: true +- name: build_win + type: boolean + default: true - name: custom_boost_version type: boolean default: false @@ -45,6 +54,9 @@ pr: extends: template: templates/stages-uhd-pipeline.yml parameters: + build_linux: ${{ parameters.build_linux }} + build_mac: ${{ parameters.build_mac }} + build_win: ${{ parameters.build_win }} custom_boost_version: ${{ parameters.custom_boost_version }} custom_boost_version_url: ${{ parameters.custom_boost_version_url }} release_binaries: ${{ parameters.release_binaries }} |