diff options
author | Steven Koo <steven.koo@ni.com> | 2021-03-17 13:53:16 -0500 |
---|---|---|
committer | Aaron Rossetto <aaron.rossetto@ni.com> | 2021-03-19 15:40:09 -0500 |
commit | f2a3954ce3f3c89a464cc36eafa8c72e2b821c32 (patch) | |
tree | 81cabf1b2e48cdd7f96fc4a52136ccc8e113e8f5 /.ci/templates/steps-build-uhd-msbuild.yml | |
parent | 3b29a89b9f9a8167a595eed2988b89e2a7f2112a (diff) | |
download | uhd-f2a3954ce3f3c89a464cc36eafa8c72e2b821c32.tar.gz uhd-f2a3954ce3f3c89a464cc36eafa8c72e2b821c32.tar.bz2 uhd-f2a3954ce3f3c89a464cc36eafa8c72e2b821c32.zip |
ci: install vc_buildtools instead of vc_community
For our build machines, we don't need full on Visual Studio.
Instead this installs the VS Build Tools, which has the CLI
build apps we need.
Signed-off-by: Steven Koo <steven.koo@ni.com>
Diffstat (limited to '.ci/templates/steps-build-uhd-msbuild.yml')
-rw-r--r-- | .ci/templates/steps-build-uhd-msbuild.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.ci/templates/steps-build-uhd-msbuild.yml b/.ci/templates/steps-build-uhd-msbuild.yml index d92ae88b6..3b2c6120d 100644 --- a/.ci/templates/steps-build-uhd-msbuild.yml +++ b/.ci/templates/steps-build-uhd-msbuild.yml @@ -23,7 +23,7 @@ steps: displayName: cmake msbuild UHD - script: | cd ${{ parameters.uhdBuildDir }} - call "C:\Program Files (x86)\Microsoft Visual Studio\$(vsYear)\Community\VC\Auxiliary\Build\vcvarsall.bat" $(vsArch) + call "C:\Program Files (x86)\Microsoft Visual Studio\$(vsYear)\BuildTools\VC\Auxiliary\Build\vcvarsall.bat" $(vsArch) msbuild.exe ALL_BUILD.vcxproj /p:configuration=release displayName: msbuild UHD - script: | |