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/x4xx-devtests.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/x4xx-devtests.yml')
-rw-r--r-- | .ci/x4xx-devtests.yml | 76 |
1 files changed, 0 insertions, 76 deletions
diff --git a/.ci/x4xx-devtests.yml b/.ci/x4xx-devtests.yml deleted file mode 100644 index 780d46ec8..000000000 --- a/.ci/x4xx-devtests.yml +++ /dev/null @@ -1,76 +0,0 @@ -# -# Copyright 2021 Ettus Research, a National Instruments Brand -# -# SPDX-License-Identifier: LGPL-3.0-or-later -# -# Description: -# -# X410-Specific Pipeline to execute the devtests (equivalent to make test_x4xx) -# on the DUT. - -# no CI triggers -trigger: none - -# no PR triggers -pr: none - -variables: - UHDForHostArtifactName: 'qemux86-64-feed' - -# pipeline triggers -resources: - pipelines: - - pipeline: 'x4xx-uhddev-oe-for-host-artifacts' - source: 'x4xx-uhddev-oe-for-host' - branch: master - trigger: - # workaround if no additional branch filter is specified - enabled: True - -pool: - demands: - - 'x4xx-devtests' - -jobs: -- job: 'devtests' - - steps: - - checkout: none - - # note: 'download' parameter must not use a variable, otherwise artifact is not found - - download: 'x4xx-uhddev-oe-for-host-artifacts' - artifact: '$(UHDForHostArtifactName)' - displayName: 'Download artifact $(UHDForHostArtifactName)' - - - script: | - cp x4xx-uhddev-oe-for-host-artifacts/$(UHDForHostArtifactName)/base-feeds.conf opkg.conf - echo -e "arch all 1\narch core2-64 6\narch qemux86_64 11" >> opkg.conf - rm -rf rootfs - opkg -f opkg.conf -o rootfs update && opkg -f opkg.conf -o rootfs install uhd uhd-examples uhd-tests - workingDirectory: $(Agent.BuildDirectory) - displayName: 'Install UHD' - - - script: | - PATH="$PATH:/usr/lib/uhd/examples" - ARGS="--args=type=x4xx --devtest-pattern=x4x0 --xml" - linux-user-chroot $PWD/rootfs /usr/bin/python3 /usr/lib/uhd/tests/devtest/run_testsuite.py --src-dir=/usr/lib/uhd/tests/devtest $ARGS - workingDirectory: $(Agent.BuildDirectory) - displayName: 'Run x4xx-devtests' - continueOnError: true - - - task: PublishTestResults@2 - inputs: - testResultsFormat: 'JUnit' - testResultsFiles: '**/TEST-*.xml' - testRunTitle: 'Devtests' - searchFolder: '$(Agent.BuildDirectory)/rootfs' - - - script: | - rm -v -f a/* - cp -v rootfs/*.log a/ - displayName: 'Prepare Logfile Artifact' - workingDirectory: $(Agent.BuildDirectory) - - - publish: '$(Agent.BuildDirectory)/a' - artifact: 'Logfiles' - displayName: 'Publish Logfiles Artifact' |