diff options
Diffstat (limited to '.ci/templates/stages-uhd-pipeline.yml')
-rw-r--r-- | .ci/templates/stages-uhd-pipeline.yml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.ci/templates/stages-uhd-pipeline.yml b/.ci/templates/stages-uhd-pipeline.yml index 99c607e03..f7d705fed 100644 --- a/.ci/templates/stages-uhd-pipeline.yml +++ b/.ci/templates/stages-uhd-pipeline.yml @@ -4,6 +4,14 @@ # SPDX-License-Identifier: LGPL-3.0-or-later # +parameters: +- name: custom_boost_version + type: boolean + default: false +- 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' + variables: - template: ../uhd-pipeline-vars.yml @@ -33,6 +41,12 @@ stages: - template: job-uhd-build-src.yml parameters: toolset: ubuntu_deb + - ${{ if parameters.custom_boost_version }}: + - template: job-uhd-build-src.yml + parameters: + toolset: make_custom_boost_version + custom_boost_version_url: ${{ parameters.custom_boost_version_url }} + - stage: test_uhd_stage displayName: Test UHD |