xaizek / fragile (License: AGPLv3+) (since 2018-12-07)
Simple lightweight CI, attempting to be somewhat Unix-like in its philosophy.
Commit c04e80d13b317b0612e954e453a316a07c077b28

Use a dash instead of a hyphen for skipped builds
It looks better.
Author: xaizek
Author date (UTC): 2017-06-21 11:41
Committer name: xaizek
Committer date (UTC): 2017-06-21 11:49
Parent(s): 2a7135095236117f6b8b941f050c9fc50ded7450
Signing key: 99DC5E4DB05F6BE2
Tree: 7819474d2656aded87af994a06794f8524af2bf7
File Lines added Lines deleted
dashboard.php 2 2
File dashboard.php changed (mode: 100644) (index 8d36582..5842312)
... ... function printBuildTable($buildsets, $builders)
79 79 if (array_key_exists($buildsetid, $builderinfo)) { if (array_key_exists($buildsetid, $builderinfo)) {
80 80 $status = $builderinfo[$buildsetid]->status; $status = $builderinfo[$buildsetid]->status;
81 81 } else { } else {
82 $status = '-';
82 $status = '‒';
83 83 } }
84 84
85 85 if (statusHasOutput($status)) { if (statusHasOutput($status)) {
 
... ... function statusHasOutput($status)
151 151 function classFromStatus($status) function classFromStatus($status)
152 152 { {
153 153 switch ($status) { switch ($status) {
154 case '-': return 'build_absent';
154 case '‒': return 'build_absent';
155 155 case 'pending': return 'build_pending'; case 'pending': return 'build_pending';
156 156 case 'running': return 'build_running'; case 'running': return 'build_running';
157 157 case 'OK': return 'build_success'; case 'OK': return 'build_success';
Hints

Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://code.reversed.top/user/xaizek/fragile

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/fragile

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a pull request:
... clone the repository ...
... make some changes and some commits ...
git push origin master