Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
containers
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
argo
containers
Commits
cee4fbd1
Commit
cee4fbd1
authored
Feb 04, 2019
by
Valentin Reis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updating the CI tests.
parent
985225a4
Pipeline
#5077
passed with stages
in 14 minutes and 47 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
87 deletions
+4
-87
.gitlab-ci.yml
.gitlab-ci.yml
+2
-85
default.nix
default.nix
+2
-2
No files found.
.gitlab-ci.yml
View file @
cee4fbd1
include
:
'
https://xgitlab.cels.anl.gov/argo/argotest/raw/master/gitlab/binary_rename.yml'
stages
:
stages
:
-
build
-
build
-
test
-
test
integration.test
:
stage
:
test
script
:
-
nix-shell .integration.nix --run "argotk.hs helloworld"
artifacts
:
paths
:
-
_output/cmd_err.log
-
_output/cmd_out.log
-
_output/daemon_out.log
-
_output/daemon_out.log
-
_output/nrm.log
-
_output/time.log
-
_output/.argo_nodeos_config_exit_message
expire_in
:
1 week
except
:
-
/^wip\/.*/
-
/^WIP\/.*/
tags
:
-
integration
.nix-build
:
stage
:
build
tags
:
-
integration
.nix-integration
:
stage
:
test
artifacts
:
paths
:
-
_output/cmd_err.log
-
_output/cmd_out.log
-
_output/daemon_out.log
-
_output/daemon_out.log
-
_output/nrm.log
-
_output/.argo_nodeos_config_exit_message
expire_in
:
1 week
except
:
-
/^wip\/.*/
-
/^WIP\/.*/
tags
:
-
integration
containers.build
:
extends
:
.nix-build
script
:
-
CACHE=$(mktemp -d --suffix=nixcache /tmp/deletable-nix-cache-XXXX)
-
XDG_CACHE_HOME=$CACHE nix-build .nix -A containers
-
rm -rf $CACHE
libnrm.build
:
extends
:
.nix-build
script
:
-
CACHE=$(mktemp -d --suffix=nixcache /tmp/deletable-nix-cache-XXXX)
-
XDG_CACHE_HOME=$CACHE nix-build .nix -A libnrm
-
rm -rf $CACHE
nrm.build
:
extends
:
.nix-build
script
:
-
CACHE=$(mktemp -d --suffix=nixcache /tmp/deletable-nix-cache-XXXX)
-
XDG_CACHE_HOME=$CACHE nix-build .nix -A nrm
-
rm -rf $CACHE
TestHello.test
:
extends
:
.nix-integration
script
:
-
CACHE=$(mktemp -d --suffix=nixcache /tmp/deletable-nix-cache-XXXX)
-
XDG_CACHE_HOME=$CACHE nix-shell .nix -A test --run "argotk.hs TestHello"
-
rm -rf $CACHE
TestListen.test
:
extends
:
.nix-integration
script
:
-
CACHE=$(mktemp -d --suffix=nixcache /tmp/deletable-nix-cache-XXXX)
-
XDG_CACHE_HOME=$CACHE nix-shell .nix -A test --run "argotk.hs TestListen"
-
rm -rf $CACHE
TestPerfwrapper.test
:
extends
:
.nix-integration
script
:
-
CACHE=$(mktemp -d --suffix=nixcache /tmp/deletable-nix-cache-XXXX)
-
XDG_CACHE_HOME=$CACHE nix-shell .nix -A test --run "argotk.hs TestPerfwrapper"
-
rm -rf $CACHE
.nix/
default.nix
→
default.nix
View file @
cee4fbd1
...
@@ -2,6 +2,6 @@ let argotest =
...
@@ -2,6 +2,6 @@ let argotest =
builtins
.
fetchTarball
builtins
.
fetchTarball
"https://xgitlab.cels.anl.gov/argo/argotest/-/archive/master/argotest-master.tar.gz"
;
"https://xgitlab.cels.anl.gov/argo/argotest/-/archive/master/argotest-master.tar.gz"
;
in
import
"
${
argotest
}
/test.nix"
{
in
import
"
${
argotest
}
/test.nix"
{
containers-override
=
./.
.
;
containers-override
=
./.
;
testName
=
"
base
"
;
testName
=
"
split
"
;
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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