diff options
author | Steven Koo <steven.koo@ni.com> | 2021-07-30 13:38:05 -0500 |
---|---|---|
committer | Aaron Rossetto <aaron.rossetto@ni.com> | 2021-08-04 15:22:12 -0500 |
commit | 0a1be828cbc1d311eb48201ebc45dfb24ce82849 (patch) | |
tree | 9e480e42d527a37645253ea5000526dfcae7b514 /.ci/uhd-pipeline-pr.yml | |
parent | 699982eef8b29da7f94fa6d0b8216d660aa8fe40 (diff) | |
download | uhd-0a1be828cbc1d311eb48201ebc45dfb24ce82849.tar.gz uhd-0a1be828cbc1d311eb48201ebc45dfb24ce82849.tar.bz2 uhd-0a1be828cbc1d311eb48201ebc45dfb24ce82849.zip |
ci: Refactor installers and add Windows support
This commit refactors the uhd pipeline to have a new installer stage.
This also adds Windows NSIS installers to pipelines.
Signed-off-by: Steven Koo <steven.koo@ni.com>
Diffstat (limited to '.ci/uhd-pipeline-pr.yml')
-rw-r--r-- | .ci/uhd-pipeline-pr.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.ci/uhd-pipeline-pr.yml b/.ci/uhd-pipeline-pr.yml index 13949c5e8..9887214bf 100644 --- a/.ci/uhd-pipeline-pr.yml +++ b/.ci/uhd-pipeline-pr.yml @@ -11,6 +11,9 @@ parameters: - name: custom_boost_version_url type: string default: 'https://boostorg.jfrog.io/artifactory/main/release/1.76.0/source/boost_1_76_0.tar.bz2' +- name: release_binaries + type: boolean + default: false trigger: none @@ -34,3 +37,4 @@ extends: parameters: custom_boost_version: ${{ parameters.custom_boost_version }} custom_boost_version_url: ${{ parameters.custom_boost_version_url }} + release_binaries: ${{ parameters.release_binaries }} |