Archived
1
0
forked from rarias/bscpkgs

Add hydraJobs with tests and packages

This commit is contained in:
2025-09-25 18:34:18 +02:00
parent c7b5ec13b8
commit 995e4ee7de
2 changed files with 6 additions and 0 deletions

View File

@@ -16,5 +16,9 @@
# propagate nixpkgs lib, so we can do bscpkgs.lib
inherit (nixpkgs) lib;
hydraJobs = {
inherit (self.legacyPackages.x86_64-linux.bsc-ci) test packages;
};
};
}

View File

@@ -88,6 +88,8 @@ in bscPkgs // {
};
};
packages = filterAttrs (_: isDerivation) bscPkgs;
pkgs = final.runCommand "ci-pkgs" { }
"printf '%s\n' ${toString (collect isDerivation bscPkgs)} > $out";