Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
f99f05b
ci: Windows PowerShell build script
ethomson Jul 14, 2018
8e28c09
ci: move tests into citest.ps1
ethomson Sep 8, 2018
2c2d2fa
ci: refactor unix ci build/test scripts
ethomson Sep 8, 2018
a0d5e07
fixup! ci: move tests into citest.ps1
ethomson Sep 8, 2018
ce0cdd1
ci: improved flexibility for citest.sh
ethomson Sep 8, 2018
35377b2
ci: setup a linux host
ethomson Jul 14, 2018
fe31cf0
ci: set up a macos host
ethomson Jul 14, 2018
56462cd
ci: scripts to setup mingw build environment
ethomson Jul 14, 2018
bce0713
ci: introduce vsts builds
ethomson Jul 14, 2018
5646008
ci: valgrind leak-checking
ethomson Jul 20, 2018
7514b2d
buf tests: allocate a smaller size for the oom
ethomson Jul 20, 2018
f44e910
ci: xcode leaks leak-checking
ethomson Jul 21, 2018
b5f20a2
ci: msvc leak-checking
ethomson Jul 21, 2018
e70dc2c
ci: enable leak checking on osx
ethomson Jul 21, 2018
cbcc959
ci: some additional debugging
ethomson Jul 21, 2018
6f38f24
ci: dissociate test from leaks process
ethomson Jul 25, 2018
bbfd661
ci: perform clang builds on Linux
ethomson Jul 26, 2018
2d3ba70
ci: use docker containers from libgit2 account
ethomson Jul 26, 2018
8aaf715
ci: use a single setup script for mingw
ethomson Jul 26, 2018
1570b72
ci: move appveyor to new scripts
ethomson Jul 26, 2018
cebffc2
ci: move travis to the new scripts
ethomson Jul 27, 2018
b82abc3
ci: remove unused old ci scripts
ethomson Jul 27, 2018
651a229
winhttp: retry erroneously failing requests
ethomson Jul 20, 2018
319d677
ci: run coverity from travis's cron
ethomson Jul 28, 2018
b4e580f
ci: run coverity from a nightly VSTS build
ethomson Jul 29, 2018
6f45c88
ci: run VSTS builds on master and maint branches
ethomson Aug 2, 2018
50f57ab
ci: remove appveyor
ethomson Aug 6, 2018
4160808
readme: remove appveyor build badge
ethomson Aug 9, 2018
470f5c0
ci: remove travis
ethomson Aug 30, 2018
66ea457
README: remove travis
ethomson Sep 3, 2018
6ffdebb
ci: use newer valgrind suppression
ethomson Sep 5, 2018
ff41a87
push tests: deeply free the push status
ethomson Jul 20, 2018
ea9fe92
push tests: deeply free the specs
ethomson Jul 20, 2018
6353e6a
smart subtransport: free url when resetting stream
ethomson Jul 20, 2018
89024c7
ci: only run the exact named test
ethomson Sep 10, 2018
7ae554f
online::clone: free url and username before resetting
ethomson Sep 20, 2018
9b122bf
ci: explicitly run in the build directory
ethomson Aug 26, 2018
8ce01d8
ci: use templates for VSTS builds
ethomson Aug 26, 2018
0897cf3
ci: rename vsts to azure-pipelines
ethomson Sep 18, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
ci: some additional debugging
  • Loading branch information
ethomson committed Sep 8, 2018
commit cbcc9597cc112fcc142d883ac06539970825c6fa
8 changes: 8 additions & 0 deletions ci/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,21 @@ cleanup() {
echo "Cleaning up..."

if [ ! -z "$GITDAEMON_DIR" -a -f "${GITDAEMON_DIR}/pid" ]; then
echo "Stopping git daemon..."
kill $(cat "${GITDAEMON_DIR}/pid")
fi

if [ ! -z "$SSHD_DIR" -a -f "${SSHD_DIR}/pid" ]; then
echo "Stopping SSH..."
kill $(cat "${SSHD_DIR}/pid")
fi

echo "Done."
}

die() {
echo "Test exited with code: $1"

cleanup
exit $1
}
Expand Down Expand Up @@ -167,4 +173,6 @@ if [ -z "$SKIP_SSH_TESTS" ]; then
unset GITTEST_REMOTE_SSH_FINGERPRINT
fi

echo "Success."
cleanup
exit 0