DSCI – YAML 대신 일반 프로그래밍 언어를 사용하는 CI

작성자

카테고리:

← 피드로
DEV Community · Alexey Melezhik · 2026-07-23 개발(SW)

Alexey Melezhik

DSCI is forgejo CI runner with pipelines syntax is just regular programming languages like Python or Raku:

.dsci/jobs.yaml

jobs:
  -
    id: job1
    path: .
    params:
      name: "dsci"

Enter fullscreen mode Exit fullscreen mode

.dsci/job.py

#!/usr/bin/python3
c = config()
print(f"hello {c['name']}")

Enter fullscreen mode Exit fullscreen mode

Just drop these two files into .dsci/ directory under the root of your repo, and that’s it.

DSCI supports many languages, so if you prefer, say Raku just have job.raku instead:

#!/usr/bin/raku
my $c = config();
say("hello $c<name>");

Enter fullscreen mode Exit fullscreen mode

DSCI is designed for programmers – everything which is possible in general programming languages is allowed here – passing state between jobs / tasks as regular variables, returning states from tasks, etc. It’s easy, fun and flexible. Instead of messing with entangled YAML code, just use normal programming languages

Forgejo integration.

So far DSCI is fully integrated with Forgejo CI using web hooks mechanics, but in theory any web hook based CI is allowed – including GitHub, GitLab, etc …

That’s it. Please give a project a star on https://github.com/melezhik/DSCI and give it a try using installation guide

원문에서 계속 ↗

코멘트

답글 남기기

이메일 주소는 공개되지 않습니다. 필수 필드는 *로 표시됩니다