[all-commits] [llvm/llvm-project] 78dcd0: Improve CI output. (#70236)

Eric via All-commits all-commits at lists.llvm.org
Wed Oct 25 15:10:42 PDT 2023


  Branch: refs/heads/main
  Home:   https://github.com/llvm/llvm-project
  Commit: 78dcd015b6c0bfc2b7934e393afbaf5fec7be578
      https://github.com/llvm/llvm-project/commit/78dcd015b6c0bfc2b7934e393afbaf5fec7be578
  Author: Eric <eric at efcs.ca>
  Date:   2023-10-25 (Wed, 25 Oct 2023)

  Changed paths:
    M libcxx/utils/ci/run-buildbot

  Log Message:
  -----------
  Improve CI output. (#70236)

There is currently a major problem with the CI output:

The information you need to see never appears in the visible log.

This is because our logs are very verbose, and list (A) every test as
they run it, and (B) every unsupported tests. This can be thousands of
lines.

(A) was introduced by me when I disabled the PTY progress bar, which
doesn't play nice with log files. That change was an improvement, but I
have now disabled the PTY on the builders, so we can go back to passing
`-s`. When `-s` is passed but no PTY is available, it prints a long
friendly progress indicator.

(B) is solved here by disabling the printing of unsupported tests at the
end of the test suite. While it can be useful on occasion to audit the
list of unsupported tests, it's far from a common operation. Instead
people want to see the log of their failure. We should upload the xml
results, so if auditing is needed, it can be done using that.

Hopefully this change will make it so that the test failures appear in
the actual log output




More information about the All-commits mailing list