forked from lix-project/nix-eval-jobs
Run build against both stable nix and nixUnstable in CI
This commit is contained in:
parent
a0bd67f9cb
commit
9bcb1bb3fc
13
flake.nix
13
flake.nix
|
@ -13,7 +13,14 @@
|
|||
rec {
|
||||
packages.nix-eval-jobs = pkgs.callPackage ./default.nix drvArgs;
|
||||
|
||||
checks = {
|
||||
checks =
|
||||
let
|
||||
mkVariant = nix: packages.nix-eval-jobs.overrideAttrs (_: {
|
||||
name = "nix-eval-jobs-${nix.version}";
|
||||
inherit (nix) version;
|
||||
});
|
||||
in
|
||||
{
|
||||
|
||||
editorconfig = pkgs.runCommand "editorconfig-check"
|
||||
{
|
||||
|
@ -35,8 +42,8 @@
|
|||
touch $out
|
||||
'';
|
||||
|
||||
build = packages.nix-eval-jobs;
|
||||
|
||||
build = mkVariant pkgs.nix;
|
||||
build-unstable = mkVariant pkgs.nixUnstable;
|
||||
};
|
||||
|
||||
defaultPackage = self.packages.${system}.nix-eval-jobs;
|
||||
|
|
Loading…
Reference in a new issue