mirror of
https://gitlab.com/TECHNOFAB/nixlets.git
synced 2025-12-12 01:50:05 +01:00
chore: add CI and fix attic nixlet
This commit is contained in:
parent
94cd725a82
commit
203c487a0b
5 changed files with 486 additions and 8 deletions
23
ci.nix
Normal file
23
ci.nix
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
pkgs,
|
||||
inputs',
|
||||
...
|
||||
}: {
|
||||
ci = {
|
||||
stages = ["check"];
|
||||
default = {
|
||||
retry = {
|
||||
max = 2;
|
||||
when = "runner_system_failure";
|
||||
};
|
||||
};
|
||||
jobs = {
|
||||
"check" = {
|
||||
stage = "check";
|
||||
script = [
|
||||
"nix flake check --impure"
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue