forked from LnL7/nix
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This ensures just `nix build`-ing the flake doesn't forget to run all tests. One can still specifiy specific attributes to just build one thing.
- Loading branch information
1 parent
6f3045c
commit ec4d347
Showing
7 changed files
with
140 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
{ | ||
lib, | ||
stdenv, | ||
buildEnv, | ||
|
||
nix-util, | ||
nix-util-c, | ||
nix-util-test-support, | ||
nix-util-tests, | ||
|
||
nix-store, | ||
nix-store-c, | ||
nix-store-test-support, | ||
nix-store-tests, | ||
|
||
nix-fetchers, | ||
nix-fetchers-tests, | ||
|
||
nix-expr, | ||
nix-expr-c, | ||
nix-expr-test-support, | ||
nix-expr-tests, | ||
|
||
nix-flake, | ||
nix-flake-tests, | ||
|
||
nix-main, | ||
nix-main-c, | ||
|
||
nix-cmd, | ||
|
||
nix-cli, | ||
|
||
nix-functional-tests, | ||
|
||
nix-internal-api-docs, | ||
nix-external-api-docs, | ||
|
||
nix-perl-bindings, | ||
}: | ||
|
||
(buildEnv rec { | ||
name = "nix-${nix-cli.version}"; | ||
paths = [ | ||
nix-util | ||
nix-util-c | ||
nix-util-test-support | ||
nix-util-tests | ||
|
||
nix-store | ||
nix-store-c | ||
nix-store-test-support | ||
nix-store-tests | ||
|
||
nix-fetchers | ||
nix-fetchers-tests | ||
|
||
nix-expr | ||
nix-expr-c | ||
nix-expr-test-support | ||
nix-expr-tests | ||
|
||
nix-flake | ||
nix-flake-tests | ||
|
||
nix-main | ||
nix-main-c | ||
|
||
nix-cmd | ||
|
||
nix-cli | ||
|
||
nix-internal-api-docs | ||
nix-external-api-docs | ||
|
||
] ++ lib.optionals (stdenv.buildPlatform.canExecute stdenv.hostPlatform) [ | ||
nix-perl-bindings | ||
]; | ||
}).overrideAttrs (_: { | ||
doCheck = true; | ||
|
||
checkInputs = [ | ||
# Actually run the unit tests too | ||
nix-util-tests.tests.run | ||
nix-store-tests.tests.run | ||
nix-expr-tests.tests.run | ||
nix-flake-tests.tests.run | ||
|
||
nix-functional-tests | ||
]; | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters