[Git][ghc/ghc][master] testsuite: remove obsolete --ci option from the testsuite driver
Marge Bot pushed to branch master at Glasgow Haskell Compiler / GHC Commits: f25e2b12 by Cheng Shao at 2026-01-14T11:10:39-05:00 testsuite: remove obsolete --ci option from the testsuite driver This patch removes the obsolete `--ci` option from the testsuite driver: neither the CI scripts nor hadrian ever invokes the testsuite driver with `--ci`, and the perf notes are always fetched to the `refs/notes/perf` local reference anyway. - - - - - 1 changed file: - testsuite/driver/perf_notes.py Changes: ===================================== testsuite/driver/perf_notes.py ===================================== @@ -685,13 +685,10 @@ def main() -> None: parser.add_argument("--add-note", nargs=3, help="Development only. --add-note N commit seed \ Adds N fake metrics to the given commit using the random seed.") - parser.add_argument("--ci", action='store_true', - help="Use ci results. You must fetch these with:\n " \ - + "$ git fetch https://gitlab.haskell.org/ghc/ghc-performance-notes.git refs/notes/perf:refs/notes/ci/perf") group = parser.add_argument_group(title='Filtering', description="Select which subset of performance metrics to dump") group.add_argument("--test-env", - help="The given test environment to be compared. Use 'local' for locally run results. If using --ci, see .gitlab-ci file for TEST_ENV settings.") + help="The given test environment to be compared. Use 'local' for locally run results.") group.add_argument("--test-name", help="Filters for tests matching the given regular expression.") group.add_argument("--metric", @@ -721,8 +718,6 @@ def main() -> None: # ref = NoteNamespace('perf') - if args.ci: - ref = NoteNamespace('ci/perf') commits = args.commits if args.commits: View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/f25e2b12c98290d3136d43e549ac268d... -- View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/f25e2b12c98290d3136d43e549ac268d... You're receiving this email because of your account on gitlab.haskell.org.
participants (1)
-
Marge Bot (@marge-bot)