Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
argotest
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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Valentin Reis
argotest
Commits
268d9ebe
Commit
268d9ebe
authored
Jan 09, 2019
by
Valentin Reis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
adding basic gitlab ci template.
parent
9229b2e7
Pipeline
#4876
passed with stage
in 9 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
102 additions
and
0 deletions
+102
-0
gitlab/basic.yml
gitlab/basic.yml
+102
-0
No files found.
gitlab/basic.yml
0 → 100644
View file @
268d9ebe
## DO NOT REMOVE this file. some repositories DEPEND on it.
#
############# Build tests ############
.nix-build
:
stage
:
build
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
############# Integration tests ############
.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
.TestPower.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 TestPower"
-
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
KNL-Power.test
:
extends
:
.TestPower.test
tags
:
-
knl
Perfwrapper.test
:
extends
:
.TestPerfwrapper.test
KNL-Perfwrapper.test
:
extends
:
.TestPerfwrapper.test
tags
:
-
knl
Listen.test
:
extends
:
.TestListen.test
KNL-Listen.test
:
extends
:
.TestListen.test
tags
:
-
knl
Hello.test
:
extends
:
.TestHello.test
KNL-Hello.test
:
extends
:
.TestHello.test
tags
:
-
knl
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