Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
emper
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Lehrstuhl für Informatik 4 (Systemsoftware)
manycore
emper
Commits
d016072c
Commit
d016072c
authored
4 years ago
by
Florian Schmaus
Browse files
Options
Downloads
Patches
Plain Diff
[gitlab-ci] Add 'test' stage
parent
058f6720
No related branches found
Branches containing commit
No related tags found
1 merge request
!15
Add 'test' stage to CI
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+78
-0
78 additions, 0 deletions
.gitlab-ci.yml
with
78 additions
and
0 deletions
.gitlab-ci.yml
+
78
−
0
View file @
d016072c
...
...
@@ -12,7 +12,85 @@ before_script:
stages
:
-
smoke-test
-
test
smoke-test
:
stage
:
smoke-test
script
:
make smoke-test
variables
:
BUILDDTYPE
:
debugoptmized
CC
:
gcc
CXX
:
g++
EXTRA_NINJA_ARGS
:
-v
.test
:
stage
:
test
script
:
-
make test
.gcc
:
variables
:
CC
:
gcc
CXX
:
g++
.clang
:
variables
:
CC
:
clang
CXX
:
clang++
.emper-worker-no-sleep
:
variables
:
EMPER_WORKER_SLEEP
:
'
false'
.emper-worker-stats
:
variables
:
EMPER_WORKER_STATS
:
'
true'
.release-build
:
variables
:
BUILDTYPE
:
release
.debug-build
:
variables
:
BUILDTYPE
:
debug
test-gcc
:
extends
:
-
.test
-
.gcc
test-gcc-release
:
extends
:
-
test-gcc
-
.release-build
test-gcc-debug
:
extends
:
-
test-gcc
-
.debug-build
test-clang
:
extends
:
-
.test
-
.clang
test-clang-release
:
extends
:
-
test-clang
-
.release-build
test-clang-debug
:
extends
:
-
test-clang
-
.debug-build
test-worker-no-sleep
:
extends
:
-
.test
-
.emper-worker-no-sleep
test-with-stats
:
extends
:
-
.test
-
.emper-worker-stats
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment