| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
| |
libssh2.org and www.libssh2.org were previously identical; now this is a
redirect.
|
| |
|
|
|
| |
Include a self-signed certificate for test.libgit2.org:1443 that we can
use to verify that GIT_OPT_SET_SSL_CERT_LOCATIONS works.
|
| | |
|
| |
|
|
|
| |
Update all the container versions to force a rebuild so that they'll get
tagged with latest (due to changes in the CI scripts).
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
|
|
|
|
|
|
|
| |
Omitting an entrypoint.sh to configure the container and instead
depending on docker primitives allows us to be more portable. (If a
distribution uses a different mechanism for adding users, we need not
have multiple entrypoint.sh files or invariants within it; instead we
can configure that in the dockerfile itself along with all the other
distribution specific components.)
|
| | |
|
| |
|
|
|
|
| |
Ninja is not installed by default on the macOS machines; stop trying to
use it. Instead use `make -j` which should be roughly equivalent in
performance but supported everywhere.
|
| | |
|
| |
|
|
|
| |
Provide the base to our docker images and run with the QEMU docker
support optionally.
|
| | |
|
| |
|
|
| |
(And move the ci scripts into the `ci` directory.)
|
| |
|
|
|
|
|
|
|
|
|
|
| |
Since we have migrated to Azure Pipelines, we have deprecated and
subsequentally removed all infrastructure for AppVeyor and
Travis. Thus it doesn't make a lot of sense to have the split
between "ci/" and "azure-pipelines/" directories anymoer, as
"azure-pipelines/" is essentially our only CI.
Move all CI scripts into the "azure-pipelines/" directory to have
everything centrally located and to remove clutter in the
top-level directory.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Right now, we have an awful hack in our test CI setup that extracts the
test command from CTest's output and then prepends the leak checker.
This is dependent on non-machine-parseable output from CMake and also
breaks on various ocassions, like for example when we have spaces in the
current path or when the path contains backslashes. Both conditions may
easily be triggered on Win32 systems, and in fact they do break our
Azure Pipelines builds.
Remove the awful hack in favour of a new CMake build option
"USE_LEAK_CHECKER". If specifying e.g. "-DUSE_LEAK_CHECKER=valgrind",
then we will set up all tests to be run under valgrind. Like this, we
can again simply execute ctest without needing to rely on evil sourcery.
|
| |
|
|
|
|
| |
Instead of having to find the fuzzer executables in our Azure test
scripts, provide test targets for each of our fuzzers that will
run them with the correct paths.
|
| |
|
|
|
| |
In order to guarantee that our fuzzers build just fine on the Windows
platform, let's enable building fuzzers on all Powershell-based builds.
|
| |
|
|
| |
Build with -Werror's equivalent (/WX) on MSVC
|
| |
|
|
|
|
| |
Our online tests are occasionally flaky since they hit real network
endpoints. Re-run them up to 5 times if they fail, to allow us to
avoid having to fail the whole build.
|
| |
|
|
|
|
| |
Our online tests are occasionally flaky since they hit real network
endpoints. Re-run them up to 5 times if they fail, to allow us to
avoid having to fail the whole build.
|
| | |
|
| | |
|
| |
|
|
|
| |
Update our CI tests to start a proxy that requires NTLM authentication;
ensure that our WIndows HTTP client can speak NTLM.
|
| |
|
|
|
|
|
| |
Subtle changes in the host OS can have impacts in the CI system that
may be hard to debug. We previously showed the results of `uname` which
can be difficult to interpret. Provide more information where
available.
|
| |
|
|
|
| |
Coverity is back but it's only read-only! Agh. Just allow it to fail
and not impact the overall job run.
|
| |
|
|
| |
Update the proxy so that we can enable a quiet mode.
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
|
|
|
|
|
| |
Change the `GITTEST_REMOTE_PROXY_URL` environment variable to be
`GITTEST_REMOTE_PROXY_HOST`, since it is a host:port combination, not an
actual URL. (We cannot use a URL here since we may want to include the
username:password combination in the constructed URL.)
|
| |\
| |
| | |
CI: Fix macOS leak detection
|
| | | |
|
| | | |
|
| | | |
|
| | |
| |
| |
| |
| |
| | |
POSIX: the CMakeLists.txt configures the test names; when we query
ctest for the test command-line to run, fail if the tests are not
found.
|
| | |
| |
| |
| |
| |
| | |
Win32: The CMakeLists.txt configures the test names; when we query
ctest for the test command-line to run, fail if the tests are not
found.
|
| | |
| |
| |
| |
| |
| | |
PowerShell can _read_ top-level variables in functions, but cannot _update_
top-level variables in functions unless they're explicitly prefixed with
`$global`.
|
| | |
| |
| |
| |
| |
| | |
Bind the proxy specifically to 127.0.0.1 instead of all addresses. This
is not strictly necessary for operations, but having a potentially open
proxy on a network is not a good idea.
|
| |/
|
|
|
| |
As the number of each grow, separate the CI build scripts from
the YAML definitions.
|
| | |
|
| |\
| |
| | |
CI: refactoring
|
| | |
| |
| |
| | |
Don't stop on test failures; run all the tests, even when a test fails.
|
| | |
| |
| |
| |
| |
| | |
Similar to the way we parse the ctest output on POSIX systems, do the
same on Windows. This allows us to append the `-r` flag to clar after
we've identified the command to run.
|
| | |
| |
| |
| |
| | |
Introduce SKIP_*_TEST variables for Windows builds to match POSIX
builds.
|
| | |
| |
| |
| | |
Add the clar flags to produce JUnit-style XML output before invocation.
|