aboutsummaryrefslogtreecommitdiffstats
path: root/.ci/templates/job-uhd-build-src.yml
diff options
context:
space:
mode:
authorSteven Koo <steven.koo@ni.com>2021-12-16 17:08:42 -0600
committerAaron Rossetto <aaron.rossetto@ni.com>2022-01-06 15:10:53 -0600
commit5e40438ee9834025dc7065c686ab34815458e1a4 (patch)
tree75fcc4de229ba14cac5432ca6c42f097549dc085 /.ci/templates/job-uhd-build-src.yml
parentf0ae43ad740335771b4c48a37b92b6f4b38f766a (diff)
downloaduhd-5e40438ee9834025dc7065c686ab34815458e1a4.tar.gz
uhd-5e40438ee9834025dc7065c686ab34815458e1a4.tar.bz2
uhd-5e40438ee9834025dc7065c686ab34815458e1a4.zip
ci: refactor dockerOSName to buildOSName
dockerOSName is misleading because it could be in a bare metal context Signed-off-by: Steven Koo <steven.koo@ni.com>
Diffstat (limited to '.ci/templates/job-uhd-build-src.yml')
-rw-r--r--.ci/templates/job-uhd-build-src.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.ci/templates/job-uhd-build-src.yml b/.ci/templates/job-uhd-build-src.yml
index 176b1d2e9..5b642d723 100644
--- a/.ci/templates/job-uhd-build-src.yml
+++ b/.ci/templates/job-uhd-build-src.yml
@@ -113,7 +113,7 @@ jobs:
includeRootFolder: false
archiveType: tar
tarCompression: gz
- archiveFile: $(Build.ArtifactStagingDirectory)/$(dockerOSName)-${{ parameters.toolset }}.tar.gz
+ archiveFile: $(Build.ArtifactStagingDirectory)/$(buildOSName)-${{ parameters.toolset }}.tar.gz
replaceExistingArchive: true
displayName: Compress build files
@@ -126,7 +126,7 @@ jobs:
- task: PublishPipelineArtifact@1
inputs:
targetPath: '$(Build.ArtifactStagingDirectory)'
- artifactName: '$(dockerOSName)-${{ parameters.toolset }}'
+ artifactName: '$(buildOSName)-${{ parameters.toolset }}'
displayName: Upload uhd build artifacts
- task: CopyFiles@2