Skip to content
Snippets Groups Projects
Commit 3b00e230 authored by René Schöne's avatar René Schöne
Browse files

Split CI process in build and test to view test results.

parent 942f1368
No related branches found
No related tags found
No related merge requests found
Pipeline #6936 passed
......@@ -7,6 +7,7 @@ services:
stages:
- build
- test
build:
image: openjdk:8
......@@ -14,4 +15,13 @@ build:
before_script:
- ls -lah *
script:
- ./gradlew --no-daemon build
- ./gradlew assemble
test:
image: openjdk:8
stage: test
script:
- ./gradlew test
artifacts:
reports:
junit: build/test-results/test/TEST-*.xml
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment