summaryrefslogtreecommitdiff
path: root/scripts/travis/script.sh
AgeCommit message (Collapse)Author
2021-01-13Merge tag 'curl-7_74_0'nikita
7.74.0
2020-11-04curl.se: new homeDaniel Stenberg
Closes #6172
2020-11-03CI/tests: enable test target on TravisCI for CMake buildsSergei Nikulov
Added test-nonflaky target to CMake builds Disabled test 1139 because the cmake build doesn't create docs/curl.1 Closes #6074
2020-11-02travis: use valgrind when running tests for debug buildsDaniel Stenberg
Except the non-x86 and sanitizer builds Closes #6154
2020-10-25alt-svc: enable by defaultDaniel Stenberg
Remove CURLALTSVC_IMMEDIATELY, which was never implemented/supported. alt-svc support in curl is no longer considered experimental Closes #5868
2020-09-14Merge tag 'curl-7_72_0' into masternikita
curl 7.72.0
2020-09-14Merge tag 'curl-7_71_1'nikita
curl 7.71.1
2020-08-04travis/script.sh: fix use of `-n' with unquoted envvarThomas M. DuBuisson
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
2020-05-15travis: remove the .checksrc fiddlingDaniel Stenberg
2020-05-10travis: Add ngtcp2 and quiche tests for CMakePeter Wu
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.
2020-04-30Merge tag 'curl-7_70_0'nikita
7.70.0
2020-04-08script: fix pathnikita
2020-04-08adjust travis scriptsnikita
2020-04-07fix-up travisnikita
2020-03-24copyright: fix out-of-date copyright ranges and missing headersDaniel Stenberg
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
2020-03-17CI: stop ignoring 323, it is disabledDaniel Stenberg
2019-12-31travis: Fix error detectionJay Satiro
- 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