Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/script
AgeCommit message (Collapse)Author
2015-07-06travis: don't install CMake on OS XCarlos Martín Nieto
Homebrew will error out because it's already installed.
2015-07-06travis: update the homebrew dbCarlos Martín Nieto
We need to make sure we are asking for the current version of packages, or we might get 404s from the download service.
2015-06-27Remove dependency installation file for travis builds.Arthur Schreiber
We're installing dependencies via the APT addon now.
2015-06-26Don't try to start ssh.Arthur Schreiber
2015-06-12travis: fail if we fail the push testsCarlos Martín Nieto
These tests were not being taken into consideration for the failure of the test. They've been failing for a while now, but we hadn't noticed as Travis was reporting the builds successful.
2015-03-17set PKG_CONFIG_LIBDIR in toolchain-mingw32.cmakeTony Kelman
2015-03-16Win32: Enable WinHTTP for MinGWPhilip Kelley
2015-03-10Revert "Implement fail-fast for Travis as well"Edward Thomson
This reverts commit ba6c53b91b1d9c9dc49b7c0d8e8efbd9842c31dc.
2015-03-05Add MinGW-w64 to matrixTony Kelman
cache mingw-w64 downloads quiet curl and 7zip run appveyor steps in cmd for mingw
2015-03-04Implement fail-fast for Travis as wellTony Kelman
2015-03-04add mingw to appveyor matrixTony Kelman
use MSYS makefiles generator add bash script for running mingw on appveyor add --login and fix run paths use msys style path to appveyor-mingw.sh add mingw path to /etc/fstab
2014-11-21Merge pull request #2710 from Therzok/shellcheckScriptsEdward Thomson
Run shell scripts through shellcheck
2014-11-21Run shell scripts through shellcheckUngureanu Marius
2014-11-20travis: disable the cert callback on OSXCarlos Martín Nieto
The sshd on OSX has stopped responding to the setting which this test assumes is there, so let's disable it until we can figure out what's happening.
2014-09-16script: use a parallel build on TravisCarlos Martín Nieto
2014-09-16Merge remote-tracking branch 'upstream/master' into cmn/host-cert-infoCarlos Martín Nieto
2014-09-16ssh: add test for host keyCarlos Martín Nieto
Test that the certificate check callback gets the right fingerprint from the host we're connecting to.
2014-08-29travis: no need to clean out the test repositoryCarlos Martín Nieto
This was added to avoid the remote's default branch to be considered to the be notes one which the first network test leaves behind.
2014-08-27Merge remote-tracking branch 'upstream/master' into cmn/ssh-retryCarlos Martín Nieto
2014-07-07ssh: provide a factory function for setting ssh pathscmn/ssh-factory-for-pathsCarlos Martín Nieto
git allows you to set which paths to use for the git server programs when connecting over ssh; and we want to provide something similar. We do this by providing a factory function which can be set as the remote's transport callback which will set the given paths upon creation.
2014-06-27travis: enable password authentication on OSXcmn/ssh-retryCarlos Martín Nieto
Our ssh tests assume that the server supports password authentication in a few places. This is convenient as we're not testing authentication methods, but what happens around them. Tell sshd on OSX to accept this form of authentication.
2014-06-27ssh: request credentials again on authentication failureCarlos Martín Nieto
Instead of completely giving up on the first failure, ask for credentials as long as we fail to authenticate.
2014-05-21travis: build on osx tooCarlos Martín Nieto
2014-04-30ciscript: don't use an empty string as a numberCarlos Martín Nieto
An empty string is not a valid number, and some shells complain. Check instead if $COVERITY is non-empty, which is a common convention and what we're doing anyway.
2014-02-06Only run clone-failure test on private repoBen Straub
2014-01-16Refine build limitationBen Straub
2014-01-16Only run coverity on developmentBen Straub
2014-01-14Add coverity-scan scriptBen Straub
2013-08-19travis: exit on failure for anything related to buildingCarlos Martín Nieto
2013-08-19travis: really fail if the tests failCarlos Martín Nieto
When implementing the ssh testing, the move to the script made it so the first test suite's exit code was ignored. Check whether the main tests fail and exit with an error in that case.
2013-08-14Test SSH in travisCarlos Martín Nieto
Set up the ssh credentials so we are able to talk to localhost and issue git commands. Move to use a script, as the command list is getting somewhat long. While here, delay installing valgrind until we need it, as it and its dependencies are by far the largest downloads and this allows us to start compiling (and failing) faster and we only incur this cost when the test suite runs successfully.