Skip to content

Commit

Permalink
fixup! Add a build definition for Azure DevOps
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
dscho committed Nov 16, 2018
1 parent d2884a8 commit 6a07e39
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ phases:
displayName: Windows
condition: succeeded()
queue:
name: Hosted VS2017
name: Hosted
timeoutInMinutes: 240
steps:
- powershell: |
Expand Down Expand Up @@ -215,7 +215,7 @@ phases:
. ci/lib.sh
make -j10 DEVELOPER=1 NO_PERL=1 || exit 1
NO_PERL=1 NO_SVN_TESTS=1 GIT_TEST_OPTS=\"--quiet --write-junit-xml\" time make -j15 -k DEVELOPER=1 test || {
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 || {
NO_PERL=1 NO_SVN_TESTS=1 GIT_TEST_OPTS=\"-i -v -x\" make -k -C t failed; exit 1
}
Expand Down

0 comments on commit 6a07e39

Please sign in to comment.