diff options
-rw-r--r-- | .ci/uhd-pipeline-pr.yml | 8 | ||||
-rw-r--r-- | .ci/uhd-pipeline.yml | 6 |
2 files changed, 14 insertions, 0 deletions
diff --git a/.ci/uhd-pipeline-pr.yml b/.ci/uhd-pipeline-pr.yml index a4768465e..db371efc3 100644 --- a/.ci/uhd-pipeline-pr.yml +++ b/.ci/uhd-pipeline-pr.yml @@ -7,21 +7,27 @@ parameters: - name: build_linux type: boolean + displayName: Build Linux default: true - name: build_mac type: boolean + displayName: Build macOS default: true - name: build_win type: boolean + displayName: Build Windows default: true - name: custom_boost_version type: boolean + displayName: Use custom boost version default: false - name: custom_boost_version_url type: string + displayName: Custom Boost URL default: 'https://boostorg.jfrog.io/artifactory/main/release/1.76.0/source/boost_1_76_0.tar.bz2' - name: release_binaries type: boolean + displayName: Set release mode for installers default: false - name: testLength type: string @@ -29,9 +35,11 @@ parameters: - 'smoke' - 'full' - 'stress' + displayName: Test Length default: 'smoke' - name: run_streaming_tests type: boolean + displayName: Run Streaming Tests default: False - name: build_sdk type: boolean diff --git a/.ci/uhd-pipeline.yml b/.ci/uhd-pipeline.yml index 826bf7a09..840d2937c 100644 --- a/.ci/uhd-pipeline.yml +++ b/.ci/uhd-pipeline.yml @@ -7,15 +7,19 @@ parameters: - name: build_linux type: boolean + displayName: Build Linux default: true - name: build_mac type: boolean + displayName: Build macOS default: true - name: build_win type: boolean + displayName: Build Windows default: true - name: release_binaries type: boolean + displayName: Set release mode for installers default: false - name: testLength type: string @@ -23,9 +27,11 @@ parameters: - 'smoke' - 'full' - 'stress' + displayName: Test Length default: 'smoke' - name: run_streaming_tests type: boolean + displayName: Run Streaming Tests default: False - name: build_sdk type: boolean |