nix/gitlab-ci: split deploy into deploy-{mach,other}
This commit is contained in:
parent
a4c6ad17dc
commit
dccfd3a2de
1 changed files with 3 additions and 3 deletions
|
@ -17,7 +17,7 @@ let
|
|||
tags = [ "macos" ];
|
||||
};
|
||||
in {
|
||||
stages = [ "build" "deploy" ];
|
||||
stages = [ "build" "deploy-mach" "deploy-other" ];
|
||||
|
||||
nixCache = {
|
||||
stage = "build";
|
||||
|
@ -39,7 +39,7 @@ let
|
|||
nixCacheMacOSARM = macOS "aarch64-darwin";
|
||||
|
||||
lukegbcom = {
|
||||
stage = "deploy";
|
||||
stage = "deploy-other";
|
||||
needs = [{ job = "nixCache"; artifacts = false; }];
|
||||
tags = [ "cacher" ];
|
||||
only.refs = [ "branch/default" ];
|
||||
|
@ -54,7 +54,7 @@ let
|
|||
|
||||
deployMachs = lib.filterAttrs (name: cfg: cfg.config.my.deploy.enable) depot.ops.nixos.systemConfigs;
|
||||
deployStage = machName: mach: ({
|
||||
stage = "deploy";
|
||||
stage = "deploy-mach";
|
||||
needs = [{ job = "nixCache"; artifacts = true; }];
|
||||
tags = [ "deployer" ];
|
||||
|
||||
|
|
Loading…
Reference in a new issue