diff options
author | Daniel Stenberg <daniel@haxx.se> | 2019-11-01 13:58:27 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2019-11-08 14:51:42 +0100 |
commit | 1f73138ce1272ea52c9b0119f5ef67aed28af836 (patch) | |
tree | d2730e72fdcef253fbf02dd1220a88b02a63d50b /.travis.yml | |
parent | 0bc60d91de0eda5d1c7ec8033a75980f81a33a59 (diff) | |
download | curl-1f73138ce1272ea52c9b0119f5ef67aed28af836.tar.gz |
checksrc: repair the copyrightyear check
- Consider a modified file to be committed this year.
- Make the travis CHECKSRC also do COPYRIGHTYEAR scan in examples and
includes
- Ignore 0 parents when getting latest commit date of file.
since in the CI we're dealing with a truncated repo of last 50 commits,
the file's most recent commit may not be available. when this happens
git log and rev-list show the initial commit (ie first commit not to be
truncated) but that's incorrect so ignore it.
Ref: https://github.com/curl/curl/pull/4547
Closes https://github.com/curl/curl/pull/4549
Co-authored-by: Jay Satiro
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 3c4fb43e5..73ac0fb01 100644 --- a/.travis.yml +++ b/.travis.yml @@ -609,6 +609,8 @@ script: make test-nonflaky fi if [ -n $CHECKSRC ]; then + echo "enable COPYRIGHTYEAR" > ./docs/examples/.checksrc + echo "enable COPYRIGHTYEAR" > ./include/curl/.checksrc make checksrc fi fi |