- 03 Aug, 2018 1 commit
-
-
This change adds support for building a fuzz target for exercising the packfile parser, as well as documentation. It also runs the fuzzers in Travis to avoid regressions.
lhchavez committed
-
- 02 Aug, 2018 8 commits
-
-
ci: run VSTS builds on master and maint branches
Edward Thomson committed -
Edward Thomson committed
-
Windows: default credentials / fallback credential handling
Edward Thomson committed -
ci: add VSTS build badge to README
Edward Thomson committed -
Edward Thomson committed
-
ci: set PKG_CONFIG_PATH for travis
Edward Thomson committed -
Homebrew's formula for openssl is "keg-only", which means it does not install it into /usr/local. On macOS builds, we need to set PKG_CONFIG_PATH to include it.
Edward Thomson committed -
CI: Refactor and introduce VSTS builds
Edward Thomson committed
-
- 30 Jul, 2018 2 commits
-
-
Henning Schaffaf committed
-
revwalk: remove tautologic condition for hiding a commit
Edward Thomson committed
-
- 29 Jul, 2018 3 commits
-
-
Edward Thomson committed
-
Instead of trying to run coverity builds during the regular PR process, run them during a regularly scheduled cron process. These only need to run nightly, so it makes sense to bring them out of the PR process.
Edward Thomson committed -
The contition cannot be reached with `commit->uninteresting` being true: either a `break` or a `continue` statement will be hit in this case.
Julian Ganz committed
-
- 28 Jul, 2018 2 commits
-
-
Edward Thomson committed
-
Edward Thomson committed
-
- 27 Jul, 2018 2 commits
-
-
winhttp: retry erroneously failing requests
Edward Thomson committed -
Edward Thomson committed
-
- 26 Jul, 2018 22 commits
-
-
Edward Thomson committed
-
Edward Thomson committed
-
Edward Thomson committed
-
The leaks process is not good about handling children. Ensure that its child is `nohup`ed so that the grandparent shell won't wait for it to exit.
Edward Thomson committed -
Edward Thomson committed
-
Edward Thomson committed
-
Edward Thomson committed
-
Edward Thomson committed
-
On Linux (where we run valgrind) allocate a smaller buffer, but still an insanely large size. This will cause malloc to fail but will not cause valgrind to report a likely error with a negative-sized malloc. Keep the original buffer size on non-Linux platforms: this is well-tested on them and changing it may be problematic. On macOS, for example, using the new size causes `malloc` to print a warning to stderr.
Edward Thomson committed -
Edward Thomson committed
-
Edward Thomson committed
-
Add a configurable limit to the max pack size that will be indexed
Patrick Steinhardt committed -
Edward Thomson committed
-
Script to set up dependencies on a macOS build system.
Edward Thomson committed -
Sets up a linux host to prepare for a build.
Edward Thomson committed -
Refactor citest.sh to enable local testing by developers.
Edward Thomson committed -
Edward Thomson committed
-
Add citest.ps1 PowerShell script to run the tests.
Edward Thomson committed -
Edward Thomson committed
-
Simplify the names for the tests, removing the unnecessary "libgit2-clar" prefix. Make "all" the new default test run, and include the online tests by default (since HTTPS should always be enabled). For the CI tests, create an offline-only test, then the various online tests.
Edward Thomson committed -
mbedtls: remove unused variable "cacert"
Edward Thomson committed -
In commit 382ed1e8 (mbedtls: load default CA certificates, 2018-03-29), the function `git_mbedtls_stream_global_init` was refactored to call out to `git_mbedtls__set_cert_location` instead of setting up the certificates itself. The conversion forgot to remove the now-unused "cacert" variable, which is now only getting declared to be free'd at the end of the function. Remove it.
Patrick Steinhardt committed
-