diff options
author | Steven Koo <steven.koo@ni.com> | 2022-02-22 16:28:30 -0600 |
---|---|---|
committer | Aaron Rossetto <aaron.rossetto@ni.com> | 2022-02-24 13:31:47 -0600 |
commit | b92825b3b93e11ae0a39bab861458fe927ed4d8d (patch) | |
tree | fa971d0d26566880bfcc048d0fae4d3520daf0ea /.ci/oe-for-host.yml | |
parent | c718ce6cd5b84ceaca50fe02f7ad9e95364472cc (diff) | |
download | uhd-b92825b3b93e11ae0a39bab861458fe927ed4d8d.tar.gz uhd-b92825b3b93e11ae0a39bab861458fe927ed4d8d.tar.bz2 uhd-b92825b3b93e11ae0a39bab861458fe927ed4d8d.zip |
ci: Remove obsolete x4xx pipelines
These x4xx pipelines have been obsoleted
by x4xx integration with mono pipeline.
Signed-off-by: Steven Koo <steven.koo@ni.com>
Diffstat (limited to '.ci/oe-for-host.yml')
-rw-r--r-- | .ci/oe-for-host.yml | 74 |
1 files changed, 0 insertions, 74 deletions
diff --git a/.ci/oe-for-host.yml b/.ci/oe-for-host.yml deleted file mode 100644 index 909c3657d..000000000 --- a/.ci/oe-for-host.yml +++ /dev/null @@ -1,74 +0,0 @@ -# -# Copyright 2021 Ettus Research, a National Instruments Brand -# -# SPDX-License-Identifier: LGPL-3.0-or-later -# -# Description: -# -# Build openembedded (OE) package for host architecture (genericx86-64) -# -# The recipe to be built is specified by variable "Image" -# The package itself is built (step "build $(Image)") and also all runtime -# dependencies are built (step "build $(Image) with dependencies") -# -# For the recipes "uhd", "uhd-fpga-images" and "mpmd", the build is configured -# to use the source code from the $(Agent.BuildDirectory)/uhd directory. The -# code is checked out by this pipeline with the branch and version which -# triggered this pipeline. -# -# The pipeline generates an artifact named qemux86_64-ipks containing the IPKs. - -trigger: - branches: - include: - - master - paths: - include: - - .ci - - host - -pr: - branches: - include: - - master - paths: - include: - - .ci - - host - -resources: - repositories: - - repository: meta-ettus - type: github - name: EttusResearch/meta-ettus-dev - endpoint: EttusResearch - ref: zeus-ci - pipelines: - - pipeline: usrp-kas-pipeline - source: 'usrp-kas' - -variables: - AUTO_CONF: $(Agent.BuildDirectory)/auto.conf - -jobs: - - template: .ci/templates/job_build_package.yml@meta-ettus - parameters: - machines: - - qemux86_64 - checkout_meta_ettus: true - targets: - - $(Image) - - package-index - - package-feed - auto_conf: $AUTO_CONF - prebuild_steps: - - script: rm -f $AUTO_CONF - - template: .ci/templates/oe_localconf_externalsrc.yml@meta-ettus - parameters: - conf_file: $AUTO_CONF - repository: self - package_paths: - - package: uhd - path: host - - package: mpmd - path: mpm |