Compare commits

..

16 Commits

Author SHA1 Message Date
ad17dbc06e Move bsc-ci test into let
All checks were successful
CI / build:all (pull_request) Successful in 10m27s
2025-10-01 15:03:51 +02:00
46990fc8f7 Rework bsc-ci 2025-10-01 15:03:51 +02:00
2d125cabaf Add riscv64 cross compilation to bsc-ci and hydra 2025-10-01 15:03:51 +02:00
00f5aad8e6 Put helper attrs of ompss2 drv to passthru 2025-10-01 15:03:50 +02:00
4cbc9b81e3 Remove gcc from tampi *buildInputs 2025-10-01 15:03:50 +02:00
21516bd96b Fix strictDeps ovni 2025-10-01 15:03:50 +02:00
c30a1ed96d Fix strictDeps osu 2025-10-01 15:03:50 +02:00
adbee036ef Fix strictDeps mercurium 2025-10-01 15:03:50 +02:00
8092140a9c Fix strictDeps tampi 2025-10-01 15:03:50 +02:00
cf2239d2db Fix strictDeps sonar 2025-10-01 15:03:50 +02:00
6c54675da4 Fix strictDeps nanos6 2025-10-01 15:03:49 +02:00
d91db4afb4 Fix strictDeps paraver 2025-10-01 15:03:49 +02:00
c07c5efbfa Fix strictDeps ompss2 2025-10-01 15:03:49 +02:00
aa55166cf3 Fix strictDeps intel 2023 2025-10-01 15:03:49 +02:00
914ee07439 Fix strictDeps bench6 2025-10-01 15:03:49 +02:00
de99a89845 Fix strictDeps bigotes 2025-10-01 15:03:49 +02:00
2 changed files with 5 additions and 5 deletions

View File

@@ -17,7 +17,7 @@
legacyPackages.${system} = pkgs;
hydraJobs = {
inherit (self.legacyPackages.${system}.bsc-ci) tests pkgs cross;
inherit (self.legacyPackages.${system}.bsc-ci) test pkgs cross;
};
# propagate nixpkgs lib, so we can do bscpkgs.lib

View File

@@ -46,7 +46,7 @@ let
wxparaver = callPackage ./pkgs/paraver/default.nix { };
};
tests = rec {
test = rec {
#hwloc = callPackage ./test/bugs/hwloc.nix { }; # Broken, no /sys
#sigsegv = callPackage ./test/reproducers/sigsegv.nix { };
hello-c = callPackage ./test/compilers/hello-c.nix { };
@@ -101,9 +101,9 @@ let
crossList = builtins.mapAttrs (t: v: buildList t (builtins.attrValues v)) cross;
pkgsList = buildList "ci-pkgs" (builtins.attrValues pkgs);
testList = buildList "ci-tests" (collect isDerivation tests);
tests = buildList "ci-tests" (collect isDerivation test);
all = buildList' "ci-all" [ pkgsList testList ];
all = buildList' "ci-all" [ pkgsList tests ];
in bscPkgs // {
# Prevent accidental usage of bsc attribute
@@ -112,7 +112,7 @@ in bscPkgs // {
# Internal for our CI tests
bsc-ci = {
inherit pkgs pkgsList;
inherit tests testList;
inherit test tests;
inherit cross crossList;
inherit all;
};