| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
| |
Rename still used leftovers to "zuul" as that's now the CI using them.
Closes #7313
|
|
|
|
|
|
|
| |
crustls moved to https://github.com/rustls/rustls-ffi. This also bumps
the expected version to 0.7.0.
Closes #7297
|
| |
|
|
|
|
| |
Closes #7133
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This also pins a specific release in the Travis test so future
API-breaking changins in crustls won't break curl builds.
Add RUSTLS documentation to release tarball.
Enable running tests for rustls, minus FTP tests (require
connect_blocking, which rustls doesn't implement) and 313 (requires CRL
handling).
Closes #6763
|
|
|
|
| |
Closes #6751
|
| |
|
|
|
|
| |
Closes #6751
|
|
|
|
|
|
| |
... that doesn't run any tests (yet)
Closes #6750
|
|
|
|
|
|
|
|
|
| |
Run torture without FTP and reducing coverage to 20%
For some reason the torture tests now run a lot slower on travis and run
into the 50 minute limit all the time.
Closes #6728
|
|
|
|
|
|
|
| |
The ngtcp2 project switched over to using the quictls OpenSSL fork
instead of their own patched OpenSSL. We follow suit.
Closes #6729
|
|
|
|
|
|
|
|
|
| |
... as it seems to often hang.
Also: skip the "normal" tests as they're already run by many other
builds.
Closes #6705
|
| |
|
|
|
|
|
|
|
| |
... since they disable it by default since a few days back.
Closes #6506
Fixes #6493
|
|
|
|
| |
skip test 410 for mesalink in the CI as it otherwise hangs "forever"
|
|
|
|
| |
Closes #6430
|
|
|
|
| |
Closes #6419
|
|
|
|
|
|
| |
... since it runs into the 50 minute time limit too often otherwise.
Closes #6403
|
| |
|
|
|
|
| |
Closes #6235
|
|
|
|
| |
Closes #6172
|
|
|
|
|
|
|
| |
Added package ninja-build to environment
Use ninja to speed up CMake builds
Closes #6077
|
|
|
|
|
|
|
|
| |
Added test-nonflaky target to CMake builds
Disabled test 1139 because the cmake build doesn't create docs/curl.1
Closes #6074
|
|
|
|
|
|
| |
Except the non-x86 and sanitizer builds
Closes #6154
|
|
|
|
|
|
|
|
| |
Remove CURLALTSVC_IMMEDIATELY, which was never implemented/supported.
alt-svc support in curl is no longer considered experimental
Closes #5868
|
|
|
|
|
|
|
| |
... as their git master seems too fragile to use (and 3.2.1 which is the
latest has a build failure).
Closes #5964
|
|
|
|
|
|
| |
The v3.2.1 tag (latest release atm) results in a broken build.
Closes #5932
|
|
|
|
| |
Closes #5908
|
|
|
|
| |
Closes #5871
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Shellcheck tells us "-n doesn't work with unquoted arguments. quote or
use [[ ]]."
And testing shows:
```
docker run --rm -it ubuntu bash
root@fe85ce156856:/# [ -n $DOES_NOT_EXIST ] && echo "I ran"
I ran
root@fe85ce156856:/# [ -n "$DOES_NOT_EXIST" ] && echo "I ran"
root@fe85ce156856:/#
```
Closes #5773
|
|
|
|
| |
Closes #5752
|
|
|
|
|
|
|
|
|
|
| |
This is required after https://github.com/cloudflare/quiche/pull/593
moved BoringSSL around slightly.
This also means that Go is not needed to build BoringSSL anymore (the
one provided by quiche anyway).
Closes #5691
|
|
|
|
|
|
|
| |
quiche builds boringssl as static library, reuse that instead of
building another shared library.
Closes #5438
|
| |
|
|
|
|
|
|
| |
To avoid an explosion of jobs, extend the existing CMake tests with
ngtcp2 and quiche support. macOS was previously moved to GitHub actions,
so the non-Linux case can be dropped.
|
| |
|
|
|
|
| |
Closes #5301
|
| |
|
|
|
|
| |
... which also makes it OpenSSL 1.1.1d based and not v3.
|
|
|
|
|
|
|
|
|
| |
Reported by the new script 'scripts/copyright.pl'. The script has a
regex whitelist for the files that don't need copyright headers.
Removed three (mostly usesless) README files from docs/
Closes #5141
|
| |
|
|
- Stop using inline shell scripts for before_script and script sections.
Prior to this change Travis could ignore errors from commands in inline
scripts. I don't understand how or why it happens. This is a workaround.
Assisted-by: Simon Warta
Ref: https://github.com/travis-ci/travis-ci/issues/1066
Fixes https://github.com/curl/curl/issues/3730
Closes https://github.com/curl/curl/pull/3755
|