Merge pull request #2351 from PhilipOakley/vcpkg-tip

Vcpkg Install: detect lack of working Git, and note possible vcpkg time outs
This commit is contained in:
Johannes Schindelin
2019-10-07 12:06:14 +02:00
2 changed files with 16 additions and 1 deletions

View File

@@ -196,7 +196,9 @@ jobs:
cmake `pwd`/contrib/buildsystems/ -DCMAKE_PREFIX_PATH=`pwd`/compat/vcbuild/vcpkg/installed/x64-windows \
-DNO_GETTEXT=YesPlease -DPERL_TESTS=OFF -DPYTHON_TESTS=OFF -DCURL_NO_CURL_CMAKE=ON
- name: MSBuild
run: msbuild git.sln -property:Configuration=Release -property:Platform=x64 -maxCpuCount:4 -property:PlatformToolset=v142
run: |
$sln = if (Test-Path git.slnx) { 'git.slnx' } else { 'git.sln' }
msbuild $sln -property:Configuration=Release -property:Platform=x64 -maxCpuCount:4
- name: bundle artifact tar
shell: bash
env: