mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
tests.build-environment-info: init (#351794)
This commit is contained in:
commit
95d29b24b0
11
pkgs/test/build-environment-info/default.nix
Normal file
11
pkgs/test/build-environment-info/default.nix
Normal file
@ -0,0 +1,11 @@
|
||||
{ runCommand }:
|
||||
|
||||
# Prints information about the state of the build environment for
|
||||
# assistance debugging Hydra. Feel free to add anything you would find
|
||||
# useful to this.
|
||||
runCommand "build-environment-info" { } ''
|
||||
ulimit -a
|
||||
|
||||
# Always fail so that this job can easily be restarted.
|
||||
exit 1
|
||||
''
|
@ -185,4 +185,6 @@ with pkgs;
|
||||
replaceVars = recurseIntoAttrs (callPackage ./replace-vars { });
|
||||
|
||||
substitute = recurseIntoAttrs (callPackage ./substitute { });
|
||||
|
||||
build-environment-info = callPackage ./build-environment-info { };
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user