Make a release job

This commit is contained in:
Graham Christensen 2017-12-08 21:10:28 -05:00
parent 3313356522
commit 954c0ca3d6
No known key found for this signature in database
GPG key ID: ACA1C1D120C83D5C

View file

@ -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
];
};
}