mirror of
https://gitlab.com/TECHNOFAB/nix-gitlab-ci.git
synced 2025-12-11 17:50:08 +01:00
18 lines
363 B
Nix
18 lines
363 B
Nix
{inputs, ...}: let
|
|
inherit (inputs) cilib;
|
|
in
|
|
cilib.mkCI {
|
|
pipelines = {
|
|
"default" = {
|
|
stages = ["example"];
|
|
jobs."example" = {
|
|
stage = "example";
|
|
script = ["echo hello world"];
|
|
};
|
|
};
|
|
"test".jobs."example" = {
|
|
stage = ".pre";
|
|
script = ["echo hello world"];
|
|
};
|
|
};
|
|
}
|