summaryrefslogtreecommitdiff
path: root/scripts/travis
Commit message (Collapse)AuthorAgeFilesLines
* 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