summaryrefslogtreecommitdiff
path: root/script
Commit message (Collapse)AuthorAgeFilesLines
* 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: 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.