Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
argo
argopkgs
Commits
70f78fbf
Commit
70f78fbf
authored
Feb 21, 2019
by
Valentin Reis
Browse files
adds testApplication
parent
b0aa9a03
Pipeline
#5498
canceled with stages
in 3 minutes and 2 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
pkgs/default.nix
View file @
70f78fbf
...
...
@@ -147,14 +147,20 @@ let
test
=
pkgs
.
stdenv
.
mkDerivation
rec
{
name
=
"testEnv"
;
buildInputs
=
testBuildInputs
++
[
lammps
qmcpack
openmc
stream
amg
#data
openmc-data
buildInputs
=
[
# argotk runs mpiexec:
pkgs
.
mpich2
# argotk uses hwloc to choose CPU counts:
pkgs
.
hwloc
# these are needed for some reason:
pkgs
.
coreutils
pkgs
.
utillinux
pkgs
.
git
# argo tools
argotk
# argo components
containers
nrm
];
#required to be able to build the drv.
...
...
@@ -176,6 +182,16 @@ let
OPENMC_CROSS_SECTIONS
=
"
${
openmc-data
}
/cross_sections.xml"
;
OPENMC_PWD
=
"
${
argotk
}
/share/openmc"
;
};
testApplications
=
test
.
overrideAttrs
(
old
:{
buildInputs
=
testBuildInputs
++
[
lammps
qmcpack
openmc
stream
amg
openmc-data
];
});
expe
=
test
.
overrideAttrs
(
old
:{
buildInputs
=
testBuildInputs
++
[
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment