Compare commits

..

15 Commits

Author SHA1 Message Date
fbcce1a137
Use gcc13 for llvm-ompss2 for intel 2025-09-29 12:54:25 +02:00
5ff58ed90e
Use gcc13 for intel compiler 2025-09-29 12:54:25 +02:00
5f46bff2ca
Reorder includes in intel 202{4,5} wrapper 2025-09-29 12:54:25 +02:00
6dd25cd8ff
Fix path in intel compiler wrapper 2025-09-29 12:54:25 +02:00
9f72c57bdd
Do not check missing symlinks in intel-oneapi 2025-09-29 12:54:24 +02:00
affc80cd87
Add passthru in ompss2 wrapper for icpx compat 2025-09-29 12:54:24 +02:00
148fae48ee
Remove wrapper flags when clang called from intel 2025-09-29 12:54:24 +02:00
672b84359f
Add oneMath 2025-09-29 12:54:24 +02:00
d0d26ccee7
Fix parsing of new apt package list for oneapi 2023
New apt list does not have Package: as the first entry for all packages
2025-09-29 12:54:24 +02:00
49b490876e
Add intel-hpckit-2025 as default intelPackages
Also introduces hpckit_2024
2025-09-29 12:54:24 +02:00
e0f1ef3475
Add TASYCL 2.1.0 2025-09-29 12:54:23 +02:00
4292109ae0
Add test for icpx with ompss-2 as host compiler 2025-09-29 12:54:23 +02:00
ce131fc169
Add SYCL test compilation 2025-09-29 12:54:23 +02:00
107952ead9
Add alias intelPackages -> intelPackages_2023 2025-09-29 12:54:23 +02:00
2ffdd53d86 Add hydraJobs with tests and packages
Reviewed-by: Rodrigo Arias Mallo <rodrigo.arias@bsc.es>
Tested-by: Rodrigo Arias Mallo <rodrigo.arias@bsc.es>
2025-09-26 16:12:46 +02:00
2 changed files with 16 additions and 8 deletions

View File

@ -2,17 +2,23 @@
inputs.nixpkgs.url = "nixpkgs";
outputs = { self, nixpkgs, ...}:
let
pkgs = import nixpkgs {
let
# For now we only support x86
system = "x86_64-linux";
overlays = [ self.overlays.default ];
};
in
pkgs = import nixpkgs {
inherit system;
overlays = [ self.overlays.default ];
};
in
{
bscOverlay = import ./overlay.nix;
overlays.default = self.bscOverlay;
legacyPackages.x86_64-linux = pkgs;
# full nixpkgs with our overlay applied
legacyPackages.${system} = pkgs;
hydraJobs = {
inherit (self.legacyPackages.${system}.bsc-ci) test pkgs;
};
# propagate nixpkgs lib, so we can do bscpkgs.lib
inherit (nixpkgs) lib;

View File

@ -106,7 +106,9 @@ in bscPkgs // {
};
};
pkgs = final.runCommand "ci-pkgs" { }
pkgs = filterAttrs (_: isDerivation) bscPkgs;
pkgsList = final.runCommand "ci-pkgs" { }
"printf '%s\n' ${toString (collect isDerivation bscPkgs)} > $out";
tests = final.runCommand "ci-tests" { }
@ -114,7 +116,7 @@ in bscPkgs // {
all = final.runCommand "ci-all" { }
''
deps="${toString [ final.bsc-ci.pkgs final.bsc-ci.tests ]}"
deps="${toString [ final.bsc-ci.pkgsList final.bsc-ci.tests ]}"
cat $deps
printf '%s\n' $deps > $out
'';