Clang-Tidy: Update builder to not run clang_tidy_warn.py
This CL has the builder not run clang_tidy_warn.py. This is because
clang_tidy_warn.py and all associated files have been migrated to
google3 at //googleclient/chrome/chromeos_toolchain/clang_tidy, and
are run by a daily borg job. Thus, we no longer need this builder to
run clang_tidy_warn.py.
BUG=None
TEST=None
Change-Id: I66b3ebf4725ed45c212e851f6d3f840d72e34f7e
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/chromite/+/1677135
Reviewed-by: Jason Clinton <jclinton@chromium.org>
Reviewed-by: Caroline Tice <cmtice@chromium.org>
Reviewed-by: George Burgess <gbiv@chromium.org>
Tested-by: Emma Vukelj <emmavukelj@google.com>
Commit-Queue: Emma Vukelj <emmavukelj@google.com>
diff --git a/scripts/cros_generate_tidy_warnings.py b/scripts/cros_generate_tidy_warnings.py
index 35497c0..ea466e8 100644
--- a/scripts/cros_generate_tidy_warnings.py
+++ b/scripts/cros_generate_tidy_warnings.py
@@ -64,12 +64,8 @@
def _ParseLogFiles(self):
log_files = self._FindLogFiles(self.options.logs_dir)
for f in log_files:
- cmd = [PARSING_SCRIPT, '--log_file', f, '--output_dir', self.warnings_dir]
- cros_build_lib.RunCommand(cmd, cwd=WORKING_DIR, enter_chroot=True)
- # Copy log file to output directory. We want the log files in the
- # tarball, for now, in case we ever need to re-process them. (A
- # possibility, since the final dashboard details have not been worked out
- # yet.)
+ # Copy log file to output directory because this is what we want to
+ # upload to gs
shutil.copy2(f, self.warnings_dir)
def _CreateTarball(self):