![Emily](/assets/img/avatar_default.png)
We just had a marathon session trying to fix `ulimit -n` on Hydra and have no easy way to test that it worked.
12 lines
298 B
Nix
12 lines
298 B
Nix
{ 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
|
|
''
|