This commit is contained in:
2025-08-31 11:20:06 +02:00
parent e2a49ae8a1
commit 3a3f1765ab
2 changed files with 65 additions and 8 deletions

View File

@@ -1,21 +1,72 @@
(:macro seq ())
(:macro c-not ( c )
)
; works because this has a higher constraints score:
(:macro c-not ( (c (:c-eq () _)) )
())
(:macro seq-exp (hd)
(':ot (':str-cat "- " (':t2ot-elt hd))))
(:macro seq-exp (hd .. tl)
(':seq-exp hd) (':seq-exp tl))
(:macro seq (hd)
(:t "- " hd))
(':t (':seq-exp hd)))
(:macro seq (hd .. tl)
(:t (':seq hd) (':seq tl)))
(':t (':seq-exp hd tl)))
(:macro @ ( (k(:c-atm _)) )
(:t k ":"))
(:macro c-paren-eval ())
(:macro c-paren-eval (x)
(':c-atm x)
(':c-not (':c-colon-id x)))
(:macro @ ( (k(:c-atm _)) v )
(:t k ": " v))
(:macro @ ( (k(:c-paren-eval _)) )
(':t (':str-cat (':t2ot-elt k) ":")))
(:macro @ ( (k(:c-atm _)) v .. other)
(:macro @ ( (k(:c-paren-eval _)) v )
(':t k ": " v))
(:macro @ ( (k(:c-paren-eval _)) (v(:c-atm _)) )
(':t (':str-cat (':str-cat (':atm-to-str k) ": ") (':atm-to-str v) )))
(:macro @ ( (k(:c-paren-eval _)) v .. other)
(k v)
other)
(:macro t2ot-elt ( hd )
(':atm-to-str hd))
(:macro t2ot-elt ( hd .. tl )
(':tree
(':t2ot-elt hd)
(':t2ot-elt tl)))
(:macro t () (':ot))
(:macro t ( .. tl )
(':ot
(':t2ot-elt tl)))
(:macro ot ( x )
(':yot (':indent x)))
(:macro indent ( (x(:c-str _)) )
(':str-cat " " x))
(:macro indent ( (hd(:c-atm _)) .. tl )
(':indent hd)
(':indent tl))
(:macro indent-each ( hd .. tl )
(':indent hd)
(':indent tl))
(:macro rm-first (x .. tl)
tl)
(:macro indent ( (x(:c-li0-eq _ :tree)) )
(':tree (':indent-each (':rm-first (':unpack x)))))
(name "Complex CI/CD Pipeline")
(on