23 lines
675 B
YAML
23 lines
675 B
YAML
#----------- Job Informations:
|
|
# Type: Test: {{BUILDTYPE}}
|
|
# OS: Linux
|
|
# Compiler: {{COMPILER}}
|
|
# Language: {{LANGUAGE}}
|
|
|
|
test-{{BUILDTYPE}}-{{COMPILER}}-{{LANGUAGE}}:
|
|
stage: test
|
|
script: "CI/ci-linux-test.sh {{COMPILER}} {{LANGUAGE}} {{BUILDTYPE}}"
|
|
image: graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
|
|
tags: [Docker]
|
|
dependencies: [build-{{BUILDTYPE}}-{{COMPILER}}-{{LANGUAGE}}]
|
|
artifacts:
|
|
Unittests/report.xml
|
|
Unittests/report-customvec.xml
|
|
Unittests/report-doublevec.xml
|
|
reports:
|
|
junit:
|
|
Unittests/report.xml
|
|
Unittests/report-customvec.xml
|
|
Unittests/report-doublevec.xml
|
|
|