Skip to content
Snippets Groups Projects
Commit 5df71b02 authored by Denis Arrivault's avatar Denis Arrivault
Browse files

Adding pages

parent 71d69ea5
No related branches found
No related tags found
No related merge requests found
Pipeline #
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
stages: stages:
- build - build
- test - test
- deploy
# Global runner/docker image definition # Global runner/docker image definition
image: openjdk:8 image: openjdk:8
...@@ -32,3 +33,18 @@ tests: ...@@ -32,3 +33,18 @@ tests:
expire_in: 10d expire_in: 10d
# Run the main and show the tests results
pages:
stage: deploy
tags:
- docker
dependencies:
- test
script:
- ./gradlew run
- mkdir -p public/Tests_Results && cp -r build/reports/tests/test/* public/Tests_Results/
- mkdir -p public/Jacoco && cp -r build/jacocoHtml/* public/Jacoco/
artifacts:
paths:
- public
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment