Skip to content

Commit 6a07e39

Browse files
committed
fixup! Add a build definition for Azure DevOps
Let's use the "Hosted" pool, it seems to be under less load, i.e. it will make our builds faster. While at it, also disable chain linting and bin-wrappers in the Windows phase, to save even more time. Signed-off-by: Johannes Schindelin <[email protected]>
1 parent d2884a8 commit 6a07e39

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

azure-pipelines.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ phases:
164164
displayName: Windows
165165
condition: succeeded()
166166
queue:
167-
name: Hosted VS2017
167+
name: Hosted
168168
timeoutInMinutes: 240
169169
steps:
170170
- powershell: |
@@ -215,7 +215,7 @@ phases:
215215
. ci/lib.sh
216216
217217
make -j10 DEVELOPER=1 NO_PERL=1 || exit 1
218-
NO_PERL=1 NO_SVN_TESTS=1 GIT_TEST_OPTS=\"--quiet --write-junit-xml\" time make -j15 -k DEVELOPER=1 test || {
218+
NO_PERL=1 NO_SVN_TESTS=1 GIT_TEST_OPTS=\"--no-chain-lint --no-bin-wrappers --quiet --write-junit-xml\" time make -j15 -k DEVELOPER=1 test || {
219219
NO_PERL=1 NO_SVN_TESTS=1 GIT_TEST_OPTS=\"-i -v -x\" make -k -C t failed; exit 1
220220
}
221221

0 commit comments

Comments
 (0)