aboutsummaryrefslogtreecommitdiffstats
path: root/.ci/templates/steps-build-uhd-installer-msbuild-nsis.yml
diff options
context:
space:
mode:
Diffstat (limited to '.ci/templates/steps-build-uhd-installer-msbuild-nsis.yml')
-rw-r--r--.ci/templates/steps-build-uhd-installer-msbuild-nsis.yml29
1 files changed, 29 insertions, 0 deletions
diff --git a/.ci/templates/steps-build-uhd-installer-msbuild-nsis.yml b/.ci/templates/steps-build-uhd-installer-msbuild-nsis.yml
new file mode 100644
index 000000000..ba388e5f6
--- /dev/null
+++ b/.ci/templates/steps-build-uhd-installer-msbuild-nsis.yml
@@ -0,0 +1,29 @@
+parameters:
+- name: uhdSrcDir
+ type: string
+- name: uhdBuildDir
+ type: string
+- name: uhdInstallerDir
+ type: string
+- name: cmakeCompiler
+ type: string
+- name: cmakeArch
+ type: string
+- name: vsArch
+ type: string
+- name: vsYear
+ type: string
+
+steps:
+- script: |
+ cd ${{ parameters.uhdBuildDir }}
+ call "C:\Program Files (x86)\Microsoft Visual Studio\$(vsYear)\BuildTools\VC\Auxiliary\Build\vcvarsall.bat" $(vsArch)
+ msbuild.exe package.vcxproj /p:configuration=release
+ displayName: msbuild package
+- task: CopyFiles@2
+ inputs:
+ sourceFolder: ${{ parameters.uhdBuildDir }}
+ contents: 'uhd_*.exe'
+ targetFolder: ${{ parameters.uhdInstallerDir }}
+ cleanTargetFolder: true
+ displayName: Copy msbuild installer