diff options
| author | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-10-12 15:42:56 +0200 |
|---|---|---|
| committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-10-12 15:42:56 +0200 |
| commit | 4bce6c96d0c49161b840796b277baab7972c0214 (patch) | |
| tree | 5883f6988dea5e5002e55756931ce922cbc5d806 /modules/remote-sycl/.nix | |
| parent | af87db21b8c72d16e4f63aba9fcfecd48167e71d (diff) | |
| download | forstio-forstio-4bce6c96d0c49161b840796b277baab7972c0214.tar.gz | |
Fixed and added Array for sycl
Diffstat (limited to 'modules/remote-sycl/.nix')
| -rw-r--r-- | modules/remote-sycl/.nix/derivation.nix | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/modules/remote-sycl/.nix/derivation.nix b/modules/remote-sycl/.nix/derivation.nix index 33317eb..bf40e89 100644 --- a/modules/remote-sycl/.nix/derivation.nix +++ b/modules/remote-sycl/.nix/derivation.nix @@ -11,7 +11,7 @@ , python3 , bash -, build_examples ? "true" +, build_examples ? "false" , build_benchmarks ? "true" }: @@ -54,12 +54,12 @@ in stdenv.mkDerivation { scons prefix=$out build_benchmarks=${build_benchmarks} build_examples=${build_examples} install ''; - doCheck = true; + doCheck = true; checkPhase = '' export ACPP_APPDB_DIR=. - scons test - ./bin/tests - ''; + scons test + ./bin/tests + ''; - outputs = ["out" "dev"]; + outputs = ["out" "dev"]; } |
