GitHub user maskit opened an issue:
https://github.com/apache/trafficserver/issues/1431
CI builds fail on some platforms
Our CI builds fail on CentOS6 and Ubuntu12 because of an error occurred in
check-unused-dependencies script.
The reason of the error seems that the script couldn't find git command on
the platforms. I guess it's a PATH issue.
```
FAIL: tools/check-unused-dependencies
=====================================
Traceback (most recent call last):
File "../tools/check-unused-dependencies", line 75, in <module>
for filename in subprocess.Popen(args, stdout=subprocess.PIPE).stdout:
File "/usr/lib64/python2.6/subprocess.py", line 642, in __init__
errread, errwrite)
File "/usr/lib64/python2.6/subprocess.py", line 1238, in _execute_child
raise child_exception
OSError: [Errno 2] No such file or directory
```
```
74 args = ['git', 'ls-files']
75 for filename in subprocess.Popen(args,
stdout=subprocess.PIPE).stdout:
76 filename = filename[:-1]
```
----
----
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---