mirror of
https://gitlab.com/TECHNOFAB/nix-gitlab-ci.git
synced 2026-02-02 03:15:09 +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 {
|
subType {
|
||||||
default-nix-image = mkOption {
|
default-nix-image = mkOption {
|
||||||
type = types.str;
|
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";
|
description = "The image to use on nix jobs";
|
||||||
};
|
};
|
||||||
nix-jobs-per-default = mkOption {
|
nix-jobs-per-default = mkOption {
|
||||||
|
|
@ -71,6 +71,18 @@
|
||||||
type = types.nullOr types.str;
|
type = types.nullOr types.str;
|
||||||
default = null;
|
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 {
|
in {
|
||||||
options = with lib; {
|
options = with lib; {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue