this post was submitted on 24 Jul 2026
23 points (96.0% liked)

Programming

27824 readers
566 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities !webdev@programming.dev



founded 3 years ago
MODERATORS
 

DSCI is simple yet super flexible pipeline engine to write CI code on regular programming languages, integrates with Forgejo using web hooks. Intended for small teams hosting Forgejo on single VM VPS and willing to create pipelines on regular programming languages

you are viewing a single comment's thread
view the rest of the comments
[–] melezhik@programming.dev 2 points 1 day ago* (last edited 1 day ago) (1 children)

Here is SDK for those languages:

Raku Perl Bash Python Ruby Powershell Php Golang

UPDATE: so it's not just hitting up a language from a pipeline , it's full reach SDK, one writes a pipeline on a language, if I get your comment correctly

[–] Valmond@lemmy.dbzer0.com 1 points 1 day ago (1 children)

Well no I mean if you want to do something in python just call up the python interpreter, if you have some existing stuff in TCL, just run it through that interpreter and so on,no need for a specific anything.

[–] melezhik@programming.dev 2 points 1 day ago* (last edited 1 day ago) (1 children)

But now when you have a YAML program as the first level abstraction how do you handle results between those multi language calls ? In DSCI this is achieved via states and normal functions , and everting is just a function on general purpose programming language, in YAML you need all these magic ( awkward ) YAML syntax to mimic all those things ( pass parameters , handle global variables , process user input , handle returned parameters , etc )

[–] Valmond@lemmy.dbzer0.com 1 points 1 day ago

When I did it was just like bash in yaml, return 1/0 from python, TCL, ...

IIRC !