1
0
mirror of https://github.com/git/git.git synced 2024-09-29 10:51:21 +02:00

Merge branch 'js/azure-pipelines-msvc'

* js/azure-pipelines-msvc:
  ci(visual-studio): actually run the tests in parallel
  ci(visual-studio): use strict compile flags, and optimization
This commit is contained in:
Junio C Hamano 2019-10-23 11:06:46 +09:00
commit 12a4aeaad8

@ -157,7 +157,7 @@ jobs:
displayName: 'Download git-sdk-64-minimal' displayName: 'Download git-sdk-64-minimal'
- powershell: | - powershell: |
& git-sdk-64-minimal\usr\bin\bash.exe -lc @" & git-sdk-64-minimal\usr\bin\bash.exe -lc @"
make vcxproj make NDEBUG=1 DEVELOPER=1 vcxproj
"@ "@
if (!$?) { exit(1) } if (!$?) { exit(1) }
displayName: Generate Visual Studio Solution displayName: Generate Visual Studio Solution
@ -255,7 +255,7 @@ jobs:
cd t && cd t &&
PATH=\"`$PWD/helper:`$PATH\" && PATH=\"`$PWD/helper:`$PATH\" &&
test-tool.exe run-command testsuite -V -x --write-junit-xml \ test-tool.exe run-command testsuite --jobs=10 -V -x --write-junit-xml \
`$(test-tool.exe path-utils slice-tests \ `$(test-tool.exe path-utils slice-tests \
`$SYSTEM_JOBPOSITIONINPHASE `$SYSTEM_TOTALJOBSINPHASE t[0-9]*.sh) `$SYSTEM_JOBPOSITIONINPHASE `$SYSTEM_TOTALJOBSINPHASE t[0-9]*.sh)
"@ "@