Files
Zane C. Bowers-HadleyandGitHub 7b98721e32 Poudriere support (#16229)
* add the poller

* save text status stuff

* add initial app page stuff

* add history table and start work on graphs

* checkpoint

* re-work the poudriere graph bits a bit more

* fix the poller and start work on the graphs

* polling fix

* more work on the poudriere stuff

* poke stuff with php-cs-fix

* add some more graphs

* more style fixes

* another style fix

* add more graphs

* add Poudriere docs

* add tests data

* some minor tests fixes

* a test tweak

* more test tweaks

* some more test tweaks

* tweak .data.build_info data .data.build_info to make the app data test saner

* derp... missed a item

* add app data
2024-08-21 01:27:26 -05:00

37 lines
639 B
PHP

<?php
$unit_text = 'count';
$stats_list = [
'QUEUE' => [
'stat' => 'QUEUE',
'descr' => 'QUEUE',
],
'BUILT' => [
'stat' => 'BUILT',
'descr' => 'BUILT',
],
'FAIL' => [
'stat' => 'FAIL',
'descr' => 'FAIL',
],
'SKIP' => [
'stat' => 'SKIP',
'descr' => 'SKIP',
],
'IGNORE' => [
'stat' => 'IGNORE',
'descr' => 'IGNORE',
],
'REMAIN' => [
'stat' => 'REMAIN',
'descr' => 'REMAIN',
],
'FETCH' => [
'stat' => 'FETCH',
'descr' => 'FETCH',
],
];
require 'poudriere-common.inc.php';