diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2019-05-29 21:00:58 +0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2019-05-29 22:22:28 +0200 |
commit | b70fc8f30c66df9c5ba4be06e4a808df1bba7d3a (patch) | |
tree | 3f32d59e9a2cc8e535cfc87a1025675f1c845eaa /flake.nix | |
parent | a9d3524e1f4f0212184d611b3ff3b520619dff8e (diff) |
flake.nix: Add more checks
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -14,7 +14,12 @@ nixpkgs = deps.nixpkgs; }; - checks.binaryTarball = hydraJobs.binaryTarball.x86_64-linux; + checks = { + binaryTarball = hydraJobs.binaryTarball.x86_64-linux; + perlBindings = hydraJobs.perlBindings.x86_64-linux; + inherit (hydraJobs.tests) remoteBuilds nix-copy-closure; + setuid = hydraJobs.tests.setuid.x86_64-linux; + }; packages = { nix = hydraJobs.build.x86_64-linux; |