| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
| |
... 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
|