aboutsummaryrefslogtreecommitdiff
path: root/util/board_status/to-wiki/README
diff options
context:
space:
mode:
authorPatrick Georgi <pgeorgi@chromium.org>2018-06-08 18:10:58 +0200
committerPatrick Georgi <pgeorgi@google.com>2018-06-14 08:45:24 +0000
commit79d26c7a83fd2b14cc9a787e7820824931336d85 (patch)
treece9a6d941787f4f52e8b4110a4b077e357938a32 /util/board_status/to-wiki/README
parent31e0d42a1de4605b5c5e89310643a5e8bbee4be5 (diff)
util/docker/coreboot.org-status: collect report generators
Move generators for the board status report and the kconfig options report into a common directory and wrap them in a docker container. Also rework to emit HTML not wiki syntax. Change-Id: If42e1dd312c5fa4e32f519865e3b551bc471bc72 Signed-off-by: Patrick Georgi <pgeorgi@chromium.org> Reviewed-on: https://review.coreboot.org/26977 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'util/board_status/to-wiki/README')
-rw-r--r--util/board_status/to-wiki/README39
1 files changed, 0 insertions, 39 deletions
diff --git a/util/board_status/to-wiki/README b/util/board_status/to-wiki/README
deleted file mode 100644
index 0a0d591c87..0000000000
--- a/util/board_status/to-wiki/README
+++ /dev/null
@@ -1,39 +0,0 @@
-Scripts to publish board-status data to the wiki
-================================================
-
-These scripts parse the board-status repository (and the coreboot repository as companion)
-to build a meaningful representation of the test coverage stored in board-status.
-
-The server runs these nightly (CET/CEST), so no user interaction with the wiki page is needed.
-
-How to use
-----------
-When modifying the scripts, or when publishing the results elsewhere, you might want to run them
-yourself. You'll need the board-status and the coreboot repository checked out side by side, named
-"board-status" and "coreboot" respectively (in particular without .git suffix).
-
-To emit wiki-text, in the board-status repository's top-level directory, run
-
- $ ../util/board_status/to-wiki/status-to-wiki.sh
-
-The output ends up on stdout, so you'll have to store it yourself, if you need it later.
-
-`push-to-wiki.sh FILENAME TITLE` can be used to push a file into the wiki.
-User credentials are looked up in ~/.wikiaccount, which should look like
-
- USERNAME=user
- USERPASS=password
-
-How it works
-------------
-status-to-wiki collects the reports and sorts them in buckets by report date. These can have
-weekly, monthly and quarterly granularity.
-It then passes these into the towiki script, which reads the data in more details and prints
-them in the output format.
-
-Contributions
--------------
-These scripts are rather bare, and you're welcome to extend them to extract more useful data
-from both repositories, and to present the data in a nicer way.
-A rewrite into another (reasonable) language is fine, too - shell quickly finds its limits
-for this kind of text processing.