summaryrefslogtreecommitdiff
path: root/scripts/travis/before_script.sh
Commit message (Collapse)AuthorAgeFilesLines
* CI: remove travis detailsDaniel Stenberg2021-06-291-183/+0
| | | | | | Rename still used leftovers to "zuul" as that's now the CI using them. Closes #7313
* curstls: bump crustls version and use new URLJacob Hoffman-Andrews2021-06-271-1/+1
| | | | | | | crustls moved to https://github.com/rustls/rustls-ffi. This also bumps the expected version to 0.7.0. Closes #7297
* travis: remove the hyper buildDaniel Stenberg2021-06-071-9/+0
|
* travis: add bearssl buildMichael Forney2021-05-261-0/+14
| | | | Closes #7133
* docs: document version of crustls dependencyJacob Hoffman-Andrews2021-03-211-2/+2
| | | | | | | | | | | | | 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
* travis: use ubuntu nghttp2 package instead of build our ownDaniel Stenberg2021-03-161-12/+0
| | | | Closes #6751
* travis: bump wolfssl to 4.7.0Daniel Stenberg2021-03-161-5/+5
|
* travis: only build wolfssl when neededDaniel Stenberg2021-03-161-5/+8
| | | | Closes #6751
* travis: add a rustls buildDaniel Stenberg2021-03-161-0/+11
| | | | | | ... that doesn't run any tests (yet) Closes #6750
* travis: switch ngtcp2 build over to quictlsDaniel Stenberg2021-03-111-1/+1
| | | | | | | The ngtcp2 project switched over to using the quictls OpenSSL fork instead of their own patched OpenSSL. We follow suit. Closes #6729
* travis: enable quiche's FFI featureAlessandro Ghedini2021-02-011-1/+1
|
* travis: build ngtcp2 --with-gnutlsDaniel Stenberg2021-01-221-1/+4
| | | | | | | ... since they disable it by default since a few days back. Closes #6506 Fixes #6493
* travis: make the Hyper build from its master branchDaniel Stenberg2021-01-111-1/+1
| | | | Closes #6430
* travis: adapt to Hyper build changeDaniel Stenberg2021-01-061-2/+2
| | | | Closes #6419
* travis: add CI job for Hyper buildDaniel Stenberg2020-12-181-0/+9
|
* http3: use the master branch of GnuTLS for testingDaiki Ueno2020-11-221-1/+1
| | | | Closes #6235
* curl.se: new homeDaniel Stenberg2020-11-041-1/+1
| | | | Closes #6172
* travis: use ninja-build for CMake buildsSergei Nikulov2020-11-041-14/+9
| | | | | | | Added package ninja-build to environment Use ninja to speed up CMake builds Closes #6077
* 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: 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: 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-241-0/+21
| | | | | | | | | 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
* travis: Fix error detectionJay Satiro2019-12-311-0/+107
- 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