forked from rarias/bscpkgs
Begin moving bsc packages to root attribute
This commit is contained in:
20
test/ci.nix
20
test/ci.nix
@@ -1,4 +1,4 @@
|
||||
{ self, super, bsc, callPackage }:
|
||||
{ self, super, bsc, testPkgs }:
|
||||
|
||||
let
|
||||
stdenv = self.stdenv;
|
||||
@@ -10,23 +10,7 @@ stdenv.mkDerivation rec {
|
||||
dontUnpack = true;
|
||||
|
||||
# Just build some packages
|
||||
buildInputs = with bsc; [
|
||||
# Compilers
|
||||
icc
|
||||
clangOmpss2
|
||||
mcxx
|
||||
# MPI
|
||||
impi
|
||||
mpich
|
||||
openmpi
|
||||
tampi
|
||||
# Tools
|
||||
ovni
|
||||
# extrae # Broken
|
||||
wxparaver
|
||||
# Runtimes
|
||||
nanos6
|
||||
] ++ bsc.testAll;
|
||||
buildInputs = testPkgs;
|
||||
|
||||
buildPhase = ''
|
||||
if [ -e /boot ]; then
|
||||
|
||||
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
|
||||
dontConfigure = true;
|
||||
hardeningDisable = [ "all" ];
|
||||
#NIX_DEBUG = 1;
|
||||
buildInputs = [ strace gdb ];
|
||||
buildInputs = [ ]; #strace gdb;
|
||||
# NODES requires access to /sys/devices to request NUMA information. It will
|
||||
# fail to run otherwise, so we disable the sandbox for this test.
|
||||
__noChroot = true;
|
||||
|
||||
Reference in New Issue
Block a user