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

Change command prefix to "fragile-do/"
Author: xaizek
Author date (UTC): 2018-02-11 16:55
Committer name: xaizek
Committer date (UTC): 2018-02-11 16:55
Parent(s): 9689e2db60419cb12e8eb4852f922367abc99c7a
Signing key: 99DC5E4DB05F6BE2
Tree: 1af3bf6763107eeec25f1c3ac3d988a6ab1919c4
File Lines added Lines deleted
new.php 2 2
File new.php changed (mode: 100644) (index b757648..9c4ad55)
... ... $name = $argv[1];
27 27 $revision = $argv[2]; $revision = $argv[2];
28 28 $builders = array_slice($argv, 3); $builders = array_slice($argv, 3);
29 29
30 if (substr($name, 0, strlen('fragile/')) === 'fragile/') {
31 $command = substr($name, strlen('fragile/'));
30 if (substr($name, 0, strlen('fragile-do/')) === 'fragile-do/') {
31 $command = substr($name, strlen('fragile-do/'));
32 32 $pieces = explode('%', $command); $pieces = explode('%', $command);
33 33 switch ($pieces[0]) { switch ($pieces[0]) {
34 34 case 'clean': case 'clean':
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