Skip to content

Commit ecc47f8

Browse files
committed
fixup! Add a build definition for Azure DevOps
Let's use the common ci/ scripts to build and test on Windows, too. Signed-off-by: Johannes Schindelin <[email protected]>
1 parent 53941ee commit ecc47f8

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

azure-pipelines.yml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -218,12 +218,16 @@ phases:
218218
git-sdk-64\git-cmd --command=usr\\bin\\bash.exe -lc @"
219219
. ci/lib.sh
220220
221-
make -j10 DEVELOPER=1 NO_PERL=1 || exit 1
222-
NO_PERL=1 NO_SVN_TESTS=1 GIT_TEST_SKIP_REBASE_P=1 GIT_TEST_OPTS=\"--no-chain-lint --no-bin-wrappers --quiet --write-junit-xml\" time make -j15 -k DEVELOPER=1 test || {
223-
NO_PERL=1 NO_SVN_TESTS=1 GIT_TEST_SKIP_REBASE_P=1 GIT_TEST_OPTS=\"-i -v -x\" make -k -C t failed; exit 1
224-
}
221+
export MAKEFLAGS=-j10
222+
export DEVELOPER=1
223+
export NO_PERL=1
224+
export NO_SVN_TESTS=1
225+
export GIT_TEST_SKIP_REBASE_P=1
225226
226-
save_good_tree
227+
ci/run-build-and-tests.sh || {
228+
ci/print-test-failures.sh
229+
exit 1
230+
}
227231
"@
228232
c
229233
displayName: 'build & test'

0 commit comments

Comments
 (0)