diff options
author | Steven Koo <steven.koo@ni.com> | 2021-03-16 12:39:29 -0500 |
---|---|---|
committer | Aaron Rossetto <aaron.rossetto@ni.com> | 2021-03-19 15:40:09 -0500 |
commit | 3b29a89b9f9a8167a595eed2988b89e2a7f2112a (patch) | |
tree | 8606482f63f69d2aee7a926b5ffc540ffc13ec28 /.ci/uhd-pipeline.yml | |
parent | 9aafc0ace2272746d708dcac6e5daaa50b7da4c7 (diff) | |
download | uhd-3b29a89b9f9a8167a595eed2988b89e2a7f2112a.tar.gz uhd-3b29a89b9f9a8167a595eed2988b89e2a7f2112a.tar.bz2 uhd-3b29a89b9f9a8167a595eed2988b89e2a7f2112a.zip |
ci: Build uhd with Pipelines
This commit adds the infrastructure to build uhd on both Linux and
Windows using Pipelines. Using the docker images generated by the
build docker pipeline, this runs an AzDO container job to build uhd
artifacts. It then stores the artifacts to be used in later pipelines or
stages. This change supports make and ninja on Linux and msbuild
with VS2017/VS2019 x86/x64 on Windows.
Signed-off-by: Steven Koo <steven.koo@ni.com>
Diffstat (limited to '.ci/uhd-pipeline.yml')
-rw-r--r-- | .ci/uhd-pipeline.yml | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/.ci/uhd-pipeline.yml b/.ci/uhd-pipeline.yml new file mode 100644 index 000000000..58db21be3 --- /dev/null +++ b/.ci/uhd-pipeline.yml @@ -0,0 +1,40 @@ +trigger: + branches: + include: + - master + - titanium-master + paths: + include: + - host + - .ci/uhd-pipeline.yml +pr: + branches: + include: + - master + - titanium-master + paths: + include: + - host + - .ci/uhd-pipeline.yml + +variables: +- template: uhd-pipeline-vars.yml + +resources: + pipelines: + - pipeline: uhd_build_docker_container + source: 'uhddev Build Docker Containers' + branch: master + +jobs: +- template: templates/job-get-latest-uhd-docker.yml + +- template: templates/job-uhd-build-src.yml + parameters: + toolset: make +- template: templates/job-uhd-build-src.yml + parameters: + toolset: ninja +- template: templates/job-uhd-build-src.yml + parameters: + toolset: msbuild |