Skip to content

Commit fb4979f

Browse files
committed
What if we just download the dang EXE curing CI?
1 parent 053398e commit fb4979f

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

build/pipelines/templates-v2/job-build-project.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,8 @@ jobs:
126126
127127
- template: .\steps-restore-nuget.yml
128128

129+
- template: .\steps-install-vcpkg.yml
130+
129131
- ${{ parameters.beforeBuildSteps }}
130132

131133
- task: VSBuild@1
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
steps:
2+
- pwsh: |-
3+
$j = Get-Content vcpkg.json | ConvertFrom-Json
4+
rm -r -fo dep/vcpkg
5+
git clone https://github.com/microsoft/vcpkg dep/vcpkg
6+
cd dep/vcpkg
7+
& ./bootstrap-vcpkg.bat
8+
echo "##vso[task.setvariable variable=VCPKG_ROOT]$PWD"
9+
displayName: Install vcpkg (master branch)

0 commit comments

Comments
 (0)