Skip to content

Commit

Permalink
What if we just download the dang EXE curing CI?
Browse files Browse the repository at this point in the history
  • Loading branch information
DHowett committed Aug 23, 2023
1 parent 053398e commit d10a629
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
2 changes: 2 additions & 0 deletions build/pipelines/templates-v2/job-build-project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,8 @@ jobs:
- template: .\steps-restore-nuget.yml

- template: .\steps-install-vcpkg.yml

- ${{ parameters.beforeBuildSteps }}

- task: VSBuild@1
Expand Down
8 changes: 8 additions & 0 deletions build/pipelines/templates-v2/steps-install-vcpkg.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
steps:
- pwsh: |-
$j = Get-Content vcpkg.json | ConvertFrom-Json
rm -r -fo dep/vcpkg
git clone https://github.com/microsoft/vcpkg dep/vcpkg
cd dep/vcpkg
& ./bootstrap-vcpkg.bat
echo "##vso[task.setvariable variable=VCPKG_ROOT]$PWD"

0 comments on commit d10a629

Please sign in to comment.