diff options
author | Steven Koo <steven.koo@ni.com> | 2022-01-24 11:16:39 -0600 |
---|---|---|
committer | Aaron Rossetto <aaron.rossetto@ni.com> | 2022-01-25 13:57:45 -0600 |
commit | 3cfecebc14c5e3ea2e1b9dd73f08281e3c7a2169 (patch) | |
tree | 7de7a5eae74ef2a1ea0ae3a4c564d0680a207538 /.ci/templates/job-uhd-build-installer.yml | |
parent | 87745ecef99684fe25a8aedaa7e0c96a06e9e4f0 (diff) | |
download | uhd-3cfecebc14c5e3ea2e1b9dd73f08281e3c7a2169.tar.gz uhd-3cfecebc14c5e3ea2e1b9dd73f08281e3c7a2169.tar.bz2 uhd-3cfecebc14c5e3ea2e1b9dd73f08281e3c7a2169.zip |
ci: Build gnuradio and gr-ettus
This change adds build support for gnuradio and gr-ettus.
After building gnuradio and gr-ettus 3.8 against the
uhddev commit, the job will upload the build artifact
for gnuradio and gr-ettus for use by downstream jobs,
like hardware testing.
Signed-off-by: Steven Koo <steven.koo@ni.com>
Diffstat (limited to '.ci/templates/job-uhd-build-installer.yml')
-rw-r--r-- | .ci/templates/job-uhd-build-installer.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.ci/templates/job-uhd-build-installer.yml b/.ci/templates/job-uhd-build-installer.yml index aff8dca5c..05df0fc39 100644 --- a/.ci/templates/job-uhd-build-installer.yml +++ b/.ci/templates/job-uhd-build-installer.yml @@ -63,11 +63,11 @@ jobs: ubuntuReleaseName: $(ubuntuReleaseName) - ${{ if ne(parameters.toolset, 'ubuntu_deb') }}: - download: current - artifact: $(buildOSName)-${{ parameters.toolset }} - displayName: Download pipeline artifact $(buildOSName)-${{ parameters.toolset }} + artifact: uhddev-$(buildOSName)-${{ parameters.toolset }} + displayName: Download pipeline artifact uhddev-$(buildOSName)-${{ parameters.toolset }} - task: ExtractFiles@1 inputs: - archiveFilePatterns: $(Pipeline.Workspace)/$(buildOSName)-${{ parameters.toolset }}/$(buildOSName)-${{ parameters.toolset }}.tar.gz + archiveFilePatterns: $(Pipeline.Workspace)/uhddev-$(buildOSName)-${{ parameters.toolset }}/uhddev-$(buildOSName)-${{ parameters.toolset }}.tar.gz destinationFolder: $(Build.BinariesDirectory) cleanDestinationFolder: true - ${{ if and(eq(parameters.toolset, 'msbuild'), eq(parameters.installer, 'nsis')) }}: @@ -83,5 +83,5 @@ jobs: - task: PublishPipelineArtifact@1 inputs: targetPath: '$(Build.BinariesDirectory)/uhddev-installer' - artifactName: '$(buildOSName)-${{ parameters.toolset }}-${{ parameters.installer }}-installer' + artifactName: 'uhddev-$(buildOSName)-${{ parameters.toolset }}-${{ parameters.installer }}-installer' displayName: Upload uhd installer artifact |