diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index cc0d059f78e79c77a335ba83dde26ebc9fd2af7f..c654654ff40330eaed82355ae19283d2c8b020df 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -40,6 +40,12 @@ test-nvidia-gpu: - clinfo - if [[ "$(clinfo | grep 'Device Type')" != *"GPU"* ]]; then exit -1; fi - mvn $MAVEN_CLI_OPTS test + artifacts: + when: always + reports: + junit: + - target/surefire-reports/TEST-*.xml + - target/failsafe-reports/TEST-*.xml tags: - opencl @@ -50,6 +56,12 @@ test-nvidia-cpu: - clinfo - if [[ "$(clinfo | grep 'Device Type')" == *"GPU"* ]]; then exit -1; fi - mvn $MAVEN_CLI_OPTS test + artifacts: + when: always + reports: + junit: + - target/surefire-reports/TEST-*.xml + - target/failsafe-reports/TEST-*.xml tags: - compute @@ -60,6 +72,12 @@ test-amdgpu-cpu: - clinfo - if [[ "$(clinfo | grep 'Device Type')" == *"GPU"* ]]; then exit -1; fi - mvn $MAVEN_CLI_OPTS test + artifacts: + when: always + reports: + junit: + - target/surefire-reports/TEST-*.xml + - target/failsafe-reports/TEST-*.xml tags: - compute @@ -70,6 +88,12 @@ test-pocl-cpu: - clinfo - if [[ "$(clinfo | grep 'Device Type')" == *"GPU"* ]]; then exit -1; fi - mvn $MAVEN_CLI_OPTS test + artifacts: + when: always + reports: + junit: + - target/surefire-reports/TEST-*.xml + - target/failsafe-reports/TEST-*.xml tags: - compute