disable on-demand for the checkers while we fix the filename too long issue

Reviewed By: cristianoc

Differential Revision: D2910702

fb-gh-sync-id: e081b3c
master
jrm 9 years ago committed by facebook-github-bot-1
parent 6be7266f1f
commit 3ece750c15

@ -431,7 +431,9 @@ class Infer:
infer_options += ['-project_root', self.args.project_root]
if self.args.analyzer in [config.ANALYZER_CHECKERS]:
os.environ['INFER_ONDEMAND'] = 'Y'
# TODO: 9936222: restore on-demand for the checkers
# os.environ['INFER_ONDEMAND'] = 'Y'
pass
os.environ['INFER_OPTIONS'] = ' '.join(infer_options)

@ -19,6 +19,7 @@ out = 'out'
clean_cmd = ' '.join(['rm', '-rf', out])
classpath = ':'.join([('$(classpath ' + path + ')') for path in dependencies])
infer_cmd = ' '.join([
'INFER_ONDEMAND=Y',
'infer',
'--no-progress-bar',
'--absolute-paths',

Loading…
Cancel
Save