"Maintain" the tested job so I get notifications when it fails
Signed-off-by: Shea Levy <shea@shealevy.com>
This commit is contained in:
parent
89dd7b0f69
commit
652e2ab610
|
@ -8,7 +8,7 @@ int main(int argc, char ** argv) {
|
||||||
fprintf(stderr, "Usage: %s PATH", argv[0]);
|
fprintf(stderr, "Usage: %s PATH", argv[0]);
|
||||||
exit(2);
|
exit(2);
|
||||||
}
|
}
|
||||||
if(statvfs(argv[1], &stat) != 0) {
|
if (statvfs(argv[1], &stat) != 0) {
|
||||||
perror("statvfs");
|
perror("statvfs");
|
||||||
exit(3);
|
exit(3);
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
, officialRelease ? false
|
, officialRelease ? false
|
||||||
}:
|
}:
|
||||||
|
|
||||||
let nixpkgs' = nixpkgs; in # urgh
|
let nixpkgs' = nixpkgs; pkgs = import <nixpkgs> {}; in # urgh
|
||||||
|
|
||||||
rec {
|
rec {
|
||||||
|
|
||||||
|
@ -19,9 +19,12 @@ rec {
|
||||||
supportedSystems = [ "x86_64-linux" "i686-linux" ];
|
supportedSystems = [ "x86_64-linux" "i686-linux" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
tested = (import <nixpkgs> { }).releaseTools.aggregate {
|
tested = pkgs.releaseTools.aggregate {
|
||||||
name = "nixos-${nixos.tarball.version}";
|
name = "nixos-${nixos.tarball.version}";
|
||||||
meta.description = "Release-critical builds for the NixOS unstable channel";
|
meta = {
|
||||||
|
description = "Release-critical builds for the NixOS unstable channel";
|
||||||
|
maintainers = [ pkgs.lib.maintainers.shlevy ];
|
||||||
|
};
|
||||||
members =
|
members =
|
||||||
[ nixos.channel
|
[ nixos.channel
|
||||||
nixos.manual
|
nixos.manual
|
||||||
|
|
Loading…
Reference in New Issue