Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenMesh
OpenMesh
Commits
943e846e
Commit
943e846e
authored
May 25, 2020
by
Jan Möbius
Browse files
Try to show test results in gitlab
parent
7c6a0759
Changes
3
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
View file @
943e846e
...
...
@@ -59,6 +59,16 @@ test-debug-gcc-cpp11:
image
:
graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
tags
:
[
Docker
]
dependencies
:
[
build-debug-gcc-cpp11
]
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
#----------- Job Informations:
# Type: Build: release
...
...
@@ -87,6 +97,16 @@ test-release-gcc-cpp11:
image
:
graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
tags
:
[
Docker
]
dependencies
:
[
build-release-gcc-cpp11
]
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
#----------- Job Informations:
# Type: Build: debug
...
...
@@ -115,6 +135,16 @@ test-debug-clang-cpp11:
image
:
graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
tags
:
[
Docker
]
dependencies
:
[
build-debug-clang-cpp11
]
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
#----------- Job Informations:
# Type: Build: release
...
...
@@ -143,6 +173,16 @@ test-release-clang-cpp11:
image
:
graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
tags
:
[
Docker
]
dependencies
:
[
build-release-clang-cpp11
]
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
#----------- Job Informations:
# Type: Build: debug
...
...
@@ -171,6 +211,16 @@ test-debug-gcc-cpp14:
image
:
graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
tags
:
[
Docker
]
dependencies
:
[
build-debug-gcc-cpp14
]
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
#----------- Job Informations:
# Type: Build: release
...
...
@@ -199,6 +249,16 @@ test-release-gcc-cpp14:
image
:
graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
tags
:
[
Docker
]
dependencies
:
[
build-release-gcc-cpp14
]
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
#----------- Job Informations:
# Type: Build: debug
...
...
@@ -227,6 +287,16 @@ test-debug-clang-cpp14:
image
:
graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
tags
:
[
Docker
]
dependencies
:
[
build-debug-clang-cpp14
]
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
#----------- Job Informations:
# Type: Build: release
...
...
@@ -255,6 +325,16 @@ test-release-clang-cpp14:
image
:
graphics.rwth-aachen.de:4567/docker/docker/docker-openmesh-container
tags
:
[
Docker
]
dependencies
:
[
build-release-clang-cpp14
]
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
# -----------------
...
...
CI/ci-linux-test.sh
View file @
943e846e
...
...
@@ -42,7 +42,7 @@ echo -e "${NC}"
cd
Unittests
#execute tests
./unittests
--gtest_color
=
yes
--gtest_output
=
xml
./unittests
--gtest_color
=
yes
--gtest_output
=
"
xml
:report.xml"
echo
-e
"
${
OUTPUT
}
"
echo
""
...
...
@@ -51,7 +51,7 @@ echo "Running unittests $BUILD_TYPE version with custom vector type"
echo
"======================================================================"
echo
-e
"
${
NC
}
"
./unittests_customvec
--gtest_color
=
yes
--gtest_output
=
xml
./unittests_customvec
--gtest_color
=
yes
--gtest_output
=
"
xml
:report-customvec.xml"
echo
-e
"
${
OUTPUT
}
"
echo
""
...
...
@@ -61,7 +61,7 @@ echo "======================================================================"
echo
-e
"
${
NC
}
"
#execute tests
./unittests_doublevec
--gtest_color
=
yes
--gtest_output
=
xml
./unittests_doublevec
--gtest_color
=
yes
--gtest_output
=
"
xml
:report-doublevec.xml"
cd
..
cd
..
\ No newline at end of file
cd
..
CI/gitlab-ci/linux-template-test-job.yml
View file @
943e846e
...
...
@@ -10,3 +10,13 @@ test-{{BUILDTYPE}}-{{COMPILER}}-{{LANGUAGE}}:
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
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