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
52966007
Commit
52966007
authored
Feb 21, 2019
by
Valentin Reis
Browse files
do not build apps for basic tests.
parent
70f78fbf
Pipeline
#5499
canceled with stages
in 2 minutes and 7 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
gitlab-ci/applications.yml
View file @
52966007
...
...
@@ -22,8 +22,6 @@ buildQMCPack:
extends
:
.build
script
:
-
"
argonix
build
qmcpack
-g
--argopkgs
$ARGOPKGS
$EXTRA
--verbose"
tags
:
-
notknl
buildOpenMC
:
extends
:
.build
...
...
@@ -45,52 +43,22 @@ testAMG:
script
:
-
"
argonix
build
testAMG
-g
--argopkgs
$ARGOPKGS
$EXTRA
--verbose"
testAMG-knl
:
extends
:
.applications
script
:
-
"
argonix
build
testAMG
-g
--argopkgs
$ARGOPKGS
$EXTRA
--verbose"
tags
:
-
knl
testSTREAM
:
extends
:
.applications
script
:
-
"
argonix
build
testSTREAM
-g
--argopkgs
$ARGOPKGS
$EXTRA
--verbose"
testSTREAM-knl
:
extends
:
.applications
script
:
-
"
argonix
build
testSTREAM
-g
--argopkgs
$ARGOPKGS
$EXTRA
--verbose"
tags
:
-
knl
testOpenMC
:
extends
:
.applications
script
:
-
"
argonix
build
testOpenMC
-g
--argopkgs
$ARGOPKGS
$EXTRA
--verbose"
testOpenMC-knl
:
extends
:
.applications
script
:
-
"
argonix
build
testOpenMC
-g
--argopkgs
$ARGOPKGS
$EXTRA
--verbose"
tags
:
-
knl
testLAMMPS
:
extends
:
.applications
script
:
-
"
argonix
build
testLAMMPS
-g
--argopkgs
$ARGOPKGS
$EXTRA
--verbose"
testLAMMPS-knl
:
extends
:
.applications
script
:
-
"
argonix
build
testLAMMPS
-g
--argopkgs
$ARGOPKGS
$EXTRA
--verbose"
tags
:
-
knl
testQMCPack
:
extends
:
.applications
script
:
-
"
argonix
build
testQMCPack
-g
--argopkgs
$ARGOPKGS
$EXTRA
--verbose"
tags
:
-
notknl
pkgs/default.nix
View file @
52966007
...
...
@@ -248,23 +248,23 @@ let
];
})
.
env
;
doArgotk
=
command
:
test
.
overrideAttrs
(
old
:{
doArgotk
=
drv
:
command
:
drv
.
overrideAttrs
(
old
:{
buildPhase
=
"argotk "
+
command
;
installPhase
=
''
mkdir $out
cp _output/* $out/
''
;
});
testHello
=
doArgotk
"TestHello"
;
testListen
=
doArgotk
"TestListen"
;
testPerfwrapper
=
doArgotk
"TestPerfwrapper"
;
testPower
=
doArgotk
"TestPower"
;
testSTREAM
=
doArgotk
"TestSTREAM"
;
testAMG
=
doArgotk
"TestAMG"
;
testOpenMC
=
doArgotk
"TestOpenMC"
;
testLAMMPS
=
doArgotk
"TestLAMMPS"
;
testQMCPack
=
doArgotk
"TestQMCPack"
;
testAll
=
doArgotk
"tests"
;
testHello
=
doArgotk
test
"TestHello"
;
testListen
=
doArgotk
test
"TestListen"
;
testPerfwrapper
=
doArgotk
test
"TestPerfwrapper"
;
testPower
=
doArgotk
test
"TestPower"
;
testSTREAM
=
doArgotk
testApplications
"TestSTREAM"
;
testAMG
=
doArgotk
testApplications
"TestAMG"
;
testOpenMC
=
doArgotk
testApplications
"TestOpenMC"
;
testLAMMPS
=
doArgotk
testApplications
"TestLAMMPS"
;
testQMCPack
=
doArgotk
testApplications
"TestQMCPack"
;
testAll
=
doArgotk
test
"tests"
;
};
# re-exporting a full nixpkgs-like package set
...
...
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