public inbox for kdevops@lists.linux.dev
 help / color / mirror / Atom feed
* [PATCH v2 0/9] kdevops: add support for A/B testing
@ 2025-07-30  6:01 Luis Chamberlain
  2025-07-30  6:01 ` [PATCH v2 1/9] roles/guestfs: add missing bootlinux_9p: False Luis Chamberlain
                   ` (8 more replies)
  0 siblings, 9 replies; 19+ messages in thread
From: Luis Chamberlain @ 2025-07-30  6:01 UTC (permalink / raw)
  To: Chuck Lever, Daniel Gomez, kdevops; +Cc: Luis Chamberlain

This v2 is rebased on top of the latest changes, and extends support to
be more careful. It also now adds a check to ensure we don't regress
this.

A train of sytling fixes goes with this patchset as we adopt more AI
code, as its the only way to keep them on check on styling. Turns out
its an art on it own.

Luis Chamberlain (9):
  roles/guestfs: add missing bootlinux_9p: False
  Makefile: suppress Ansible warnings during configuration generation
  playbooks: few space cleanups
  style: add extensive code formatting checks to make style
  Makefile: move styling to scripts/style.Makefile
  CLAUDE.md: add instrucitons to verify commit
  all: run black
  devconfig: add automatic APT mirror fallback for Debian testing
  bootlinux: add support for A/B kernel testing

 .github/workflows/linux-ab-testing.yml        | 217 +++++++++
 .github/workflows/linux-ab.yml                |  47 ++
 CLAUDE.md                                     |  10 +
 Makefile                                      |  18 +-
 PROMPTS.md                                    |  52 +++
 defconfigs/linux-ab-testing                   |  14 +
 defconfigs/linux-ab-testing-9p                |  15 +
 defconfigs/linux-ab-testing-builder           |  15 +
 defconfigs/linux-ab-testing-target            |  15 +
 docs/kdevops-make-linux.md                    | 158 +++++++
 playbooks/mmtests.yml                         |   2 +-
 .../blktests/augment_expunge_list.py          |  95 ++--
 .../workflows/blktests/gen-expunge-args.py    |  46 +-
 .../workflows/blktests/gen-results-dir.py     |  39 +-
 .../blktests/get_new_expunge_files.py         |  16 +-
 .../dynamic-kconfig/gen-dynamic-pci.py        |  89 ++--
 .../workflows/fstests/augment_expunge_list.py | 163 +++++--
 .../workflows/fstests/bad_files_summary.py    |  46 +-
 .../fstests/fstests-checktime-distribution.py |  46 +-
 .../workflows/fstests/gen_results_summary.py  | 132 +++---
 .../fstests/get_new_expunge_files.py          |  24 +-
 playbooks/python/workflows/fstests/lib/git.py |  21 +-
 .../workflows/fstests/xunit_merge_all.py      |  33 +-
 .../sysbench/sysbench-tps-compare.py          |  84 +++-
 .../workflows/sysbench/sysbench-tps-plot.py   |  36 +-
 .../sysbench/sysbench-tps-variance.py         | 435 +++++++++++++-----
 playbooks/roles/bootlinux/defaults/main.yml   |  14 +
 playbooks/roles/bootlinux/tasks/build/9p.yml  |  20 +-
 .../install-minimal-deps/debian/main.yml      |   2 +-
 .../tasks/install-minimal-deps/main.yml       |   2 +-
 .../install-minimal-deps/redhat/main.yml      |   2 +-
 .../tasks/install-minimal-deps/suse/main.yml  |   2 +-
 playbooks/roles/bootlinux/tasks/main.yml      | 112 +++++
 .../devconfig/tasks/check-apt-mirrors.yml     |  63 +++
 playbooks/roles/devconfig/tasks/main.yml      |   8 +
 .../debian-testing-fallback-sources.list      |  10 +
 .../gen_pcie_passthrough_guestfs_xml.py       |  49 +-
 playbooks/roles/guestfs/defaults/main.yml     |   1 +
 .../linux-mirror/python/gen-mirror-files.py   | 131 +++---
 .../linux-mirror/python/start-mirroring.py    | 116 +++--
 .../roles/mmtests/tasks/install-deps/main.yml |   2 +-
 scripts/check_commit_format.py                |  28 +-
 .../generation/check_for_atomic_calls.py      |  71 +--
 .../generation/check_for_sleepy_calls.py      | 202 +++++---
 scripts/detect_indentation_issues.py          | 163 +++++++
 scripts/detect_whitespace_issues.py           |  38 +-
 scripts/ensure_newlines.py                    |  75 +++
 scripts/fix_indentation_issues.py             | 152 ++++++
 scripts/fix_whitespace_issues.py              |  44 +-
 scripts/generate_refs.py                      |   6 +-
 scripts/honey-badger.py                       | 103 +++--
 scripts/infer_last_stable_kernel.sh           |  35 ++
 scripts/linux-ab-testing.Makefile             |  51 ++
 scripts/spdxcheck.py                          | 201 ++++----
 scripts/style.Makefile                        |  12 +
 scripts/test-linux-ab-config.py               | 182 ++++++++
 scripts/test-linux-ab.sh                      | 213 +++++++++
 scripts/update_ssh_config_guestfs.py          |  49 +-
 .../workflows/blktests/blktests_watchdog.py   |  75 ++-
 scripts/workflows/cxl/gen_qemu_cxl.py         | 235 +++++++---
 scripts/workflows/fstests/fstests_watchdog.py |  99 ++--
 scripts/workflows/generic/crash_report.py     |   4 +-
 scripts/workflows/generic/crash_watchdog.py   |  78 +++-
 scripts/workflows/lib/blktests.py             |  47 +-
 scripts/workflows/lib/crash.py                |  12 +-
 scripts/workflows/lib/fstests.py              | 155 ++++---
 scripts/workflows/lib/kssh.py                 | 178 ++++---
 scripts/workflows/lib/systemd_remote.py       | 101 ++--
 .../workflows/pynfs/check_pynfs_results.py    |  17 +-
 workflows/linux/Kconfig                       | 102 +++-
 workflows/linux/Makefile                      |  39 ++
 71 files changed, 4049 insertions(+), 1120 deletions(-)
 create mode 100644 .github/workflows/linux-ab-testing.yml
 create mode 100644 .github/workflows/linux-ab.yml
 create mode 100644 defconfigs/linux-ab-testing
 create mode 100644 defconfigs/linux-ab-testing-9p
 create mode 100644 defconfigs/linux-ab-testing-builder
 create mode 100644 defconfigs/linux-ab-testing-target
 create mode 100644 playbooks/roles/devconfig/tasks/check-apt-mirrors.yml
 create mode 100644 playbooks/roles/devconfig/templates/debian-testing-fallback-sources.list
 create mode 100755 scripts/detect_indentation_issues.py
 create mode 100755 scripts/ensure_newlines.py
 create mode 100755 scripts/fix_indentation_issues.py
 create mode 100755 scripts/infer_last_stable_kernel.sh
 create mode 100644 scripts/linux-ab-testing.Makefile
 create mode 100644 scripts/style.Makefile
 create mode 100755 scripts/test-linux-ab-config.py
 create mode 100755 scripts/test-linux-ab.sh

-- 
2.47.2


^ permalink raw reply	[flat|nested] 19+ messages in thread

end of thread, other threads:[~2025-08-01 17:39 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-07-30  6:01 [PATCH v2 0/9] kdevops: add support for A/B testing Luis Chamberlain
2025-07-30  6:01 ` [PATCH v2 1/9] roles/guestfs: add missing bootlinux_9p: False Luis Chamberlain
2025-07-30 14:17   ` Chuck Lever
2025-07-30  6:01 ` [PATCH v2 2/9] Makefile: suppress Ansible warnings during configuration generation Luis Chamberlain
2025-07-30  6:22   ` Daniel Gomez
2025-07-30  6:01 ` [PATCH v2 3/9] playbooks: few space cleanups Luis Chamberlain
2025-07-30  6:01 ` [PATCH v2 4/9] style: add extensive code formatting checks to make style Luis Chamberlain
2025-07-30  6:01 ` [PATCH v2 5/9] Makefile: move styling to scripts/style.Makefile Luis Chamberlain
2025-07-30  6:01 ` [PATCH v2 6/9] CLAUDE.md: add instrucitons to verify commit Luis Chamberlain
2025-07-30  6:01 ` [PATCH v2 7/9] all: run black Luis Chamberlain
2025-07-31 12:57   ` Daniel Gomez
2025-08-01  8:12     ` Daniel Gomez
2025-08-01 12:55       ` Chuck Lever
2025-08-01 16:29         ` Daniel Gomez
2025-08-01 16:55           ` Chuck Lever
2025-07-30  6:01 ` [PATCH v2 8/9] devconfig: add automatic APT mirror fallback for Debian testing Luis Chamberlain
2025-07-30  6:41   ` Daniel Gomez
2025-08-01 17:39     ` Luis Chamberlain
2025-07-30  6:01 ` [PATCH v2 9/9] bootlinux: add support for A/B kernel testing Luis Chamberlain

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox