summaryrefslogtreecommitdiff
path: root/scripts/travis
Commit message (Collapse)AuthorAgeFilesLines
* travis: use libressl v3.1.4 instead of masterDaniel Stenberg2020-09-151-1/+1
| | | | | | | ... as their git master seems too fragile to use (and 3.2.1 which is the latest has a build failure). Closes #5964
* travis: add a build using libressl (from git master)Daniel Stenberg2020-09-071-0/+10
| | | | | | The v3.2.1 tag (latest release atm) results in a broken build. Closes #5932
* travis: add a CI job with openssl3 (from git master)Daniel Stenberg2020-09-031-0/+9
| | | | Closes #5908
* HTTP/3: update to OpenSSL_1_1_1g-quic-draft-29Eric Curtin2020-08-271-1/+1
| | | | Closes #5871
* travis/script.sh: fix use of `-n' with unquoted envvarThomas M. DuBuisson2020-08-041-1/+1
| | | | | | | | | | | | | | | | | 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
* travis: add ppc64le and s390x buildsDaniel Stenberg2020-07-311-13/+15
| | | | Closes #5752
* travis: update quiche builds for new boringssl layoutAlessandro Ghedini2020-07-181-2/+2
| | | | | | | | | | 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
* travis: simplify quiche build instructions wrt boringsslPeter Wu2020-05-221-2/+4
| | | | | | | quiche builds boringssl as static library, reuse that instead of building another shared library. Closes #5438
* travis: remove the .checksrc fiddlingDaniel Stenberg2020-05-151-2/+0
|
* travis: Add ngtcp2 and quiche tests for CMakePeter Wu2020-05-101-7/+2
| | | | | | 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.
* travis: add "qlog" as feature in the quiche buildDaniel Stenberg2020-05-051-1/+1
|
* travis: bump the wolfssl CI build to use 4.4.0Daniel Stenberg2020-04-271-5/+5
| | | | Closes #5301
* CI: add build with ngtcp2 + gnutls on Travis CIDaiki Ueno2020-03-311-6/+24
|
* travis: update the ngtcp2 build to use the latest OpenSSL patchDaniel Stenberg2020-03-251-1/+1
| | | | ... which also makes it OpenSSL 1.1.1d based and not v3.
* copyright: fix out-of-date copyright ranges and missing headersDaniel Stenberg2020-03-243-0/+63
| | | | | | | | | 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
* CI: stop ignoring 323, it is disabledDaniel Stenberg2020-03-171-6/+1
|
* travis: Fix error detectionJay Satiro2019-12-313-0/+263
- 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