Beginned with new building system .gitlab-ci.yml can now be generated by the script assemble-gitlab-ci.py. Therefore the .gitlab-ci.yml configuration file can be split into several smaller files
13 lines
432 B
YAML
13 lines
432 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}}]
|