mirror of
https://gitlab.com/TECHNOFAB/nix-gitlab-ci.git
synced 2025-12-12 02:00:13 +01:00
fix: repository name must be lowercase
add some more job options
This commit is contained in:
parent
f3485837ce
commit
77fded1940
1 changed files with 13 additions and 1 deletions
|
|
@ -19,7 +19,7 @@
|
|||
subType {
|
||||
default-nix-image = mkOption {
|
||||
type = types.str;
|
||||
default = "registry.gitlab.com/TECHNOFAB/nix-gitlab-ci/nix-ci:latest";
|
||||
default = "registry.gitlab.com/technofab/nix-gitlab-ci/nix-ci:latest";
|
||||
description = "The image to use on nix jobs";
|
||||
};
|
||||
nix-jobs-per-default = mkOption {
|
||||
|
|
@ -71,6 +71,18 @@
|
|||
type = types.nullOr types.str;
|
||||
default = null;
|
||||
};
|
||||
allow_failure = mkOption {
|
||||
type = types.bool;
|
||||
default = false;
|
||||
};
|
||||
needs = mkOption {
|
||||
type = types.nullOr (types.listOf types.str);
|
||||
default = null;
|
||||
};
|
||||
rules = mkOption {
|
||||
type = types.attrs;
|
||||
default = {};
|
||||
};
|
||||
};
|
||||
in {
|
||||
options = with lib; {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue