summaryrefslogtreecommitdiff
path: root/script
Commit message (Collapse)AuthorAgeFilesLines
* travis: fail if we fail the push testsCarlos Martín Nieto2015-06-121-2/+2
| | | | | | 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.
* set PKG_CONFIG_LIBDIR in toolchain-mingw32.cmakeTony Kelman2015-03-171-0/+2
|
* Win32: Enable WinHTTP for MinGWPhilip Kelley2015-03-162-5/+24
|
* Revert "Implement fail-fast for Travis as well"Edward Thomson2015-03-103-12/+2
| | | | This reverts commit ba6c53b91b1d9c9dc49b7c0d8e8efbd9842c31dc.
* Add MinGW-w64 to matrixTony Kelman2015-03-041-2/+19
| | | | | | | | cache mingw-w64 downloads quiet curl and 7zip run appveyor steps in cmd for mingw
* Implement fail-fast for Travis as wellTony Kelman2015-03-043-2/+12
|
* add mingw to appveyor matrixTony Kelman2015-03-041-0/+6
| | | | | | | | | | | | 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
* Merge pull request #2710 from Therzok/shellcheckScriptsEdward Thomson2014-11-212-14/+15
|\ | | | | Run shell scripts through shellcheck
| * Run shell scripts through shellcheckUngureanu Marius2014-11-202-14/+15
| |
* | travis: disable the cert callback on OSXcmn/disable-ssh-checkCarlos Martín Nieto2014-11-201-1/+4
|/ | | | | | 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.
* script: use a parallel build on TravisCarlos Martín Nieto2014-09-161-1/+1
|
* Merge remote-tracking branch 'upstream/master' into cmn/host-cert-infoCarlos Martín Nieto2014-09-161-2/+0
|\
| * travis: no need to clean out the test repositoryCarlos Martín Nieto2014-08-291-2/+0
| | | | | | | | | | 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.
* | ssh: add test for host keyCarlos Martín Nieto2014-09-161-1/+4
|/ | | | | Test that the certificate check callback gets the right fingerprint from the host we're connecting to.
* Merge remote-tracking branch 'upstream/master' into cmn/ssh-retryCarlos Martín Nieto2014-08-271-1/+4
|\
| * ssh: provide a factory function for setting ssh pathscmn/ssh-factory-for-pathsCarlos Martín Nieto2014-07-071-1/+4
| | | | | | | | | | | | | | | | | | 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.
* | travis: enable password authentication on OSXcmn/ssh-retryCarlos Martín Nieto2014-06-261-1/+7
| | | | | | | | | | | | | | | | 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.
* | ssh: request credentials again on authentication failureCarlos Martín Nieto2014-06-261-1/+1
|/ | | | | Instead of completely giving up on the first failure, ask for credentials as long as we fail to authenticate.
* travis: build on osx toocmn/dual-osCarlos Martín Nieto2014-05-212-0/+11
|
* ciscript: don't use an empty string as a numberCarlos Martín Nieto2014-04-301-1/+1
| | | | | | | 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.
* Only run clone-failure test on private repoBen Straub2014-02-051-1/+1
|
* Refine build limitationBen Straub2014-01-151-2/+7
|
* Only run coverity on developmentBen Straub2014-01-151-0/+3
|
* Add coverity-scan scriptBen Straub2014-01-132-0/+55
|
* travis: exit on failure for anything related to buildingCarlos Martín Nieto2013-08-191-8/+3
|
* travis: really fail if the tests failCarlos Martín Nieto2013-08-191-0/+5
| | | | | | 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.
* Test SSH in travisCarlos Martín Nieto2013-08-141-0/+32
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.