Make a release job
This commit is contained in:
parent
3313356522
commit
954c0ca3d6
17
release.nix
17
release.nix
|
@ -51,9 +51,22 @@ let
|
|||
x8664LinuxOnly = path:
|
||||
(attrForSystem "x86_64-linux" path);
|
||||
|
||||
in merge [
|
||||
jobs = merge [
|
||||
(attrsForAllSystems [ "ofborg" "rs" ])
|
||||
|
||||
(x8664LinuxOnly [ "ofborg" "php" ])
|
||||
(x8664LinuxOnly [ "ircbot" ])
|
||||
]
|
||||
];
|
||||
in jobs // {
|
||||
release = pkgs.releaseTools.aggregate {
|
||||
name = "release";
|
||||
meta.description = "Release-critical builds for OfBorg infrastructure";
|
||||
constituents = [
|
||||
jobs.ofborg.rs.x86_64-linux
|
||||
jobs.ofborg.rs.x86_64-darwin
|
||||
# jobs.ofborg.rs.aarch64-linux
|
||||
jobs.ofborg.php.x86_64-linux
|
||||
jobs.ircbot.x86_64-linux
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue