Compare commits

...

5 Commits

Author SHA1 Message Date
aminecmi
9446d097a3 JDK version should fix the issue.
All checks were successful
continuous-integration/drone Build is passing
2022-07-22 22:06:36 +02:00
aminecmi
763b4730fa Ignore. 2022-07-22 21:45:44 +02:00
aminecmi
5cb5296be2 Testing. 2022-07-22 21:39:14 +02:00
aminecmi
44ef9cba7d Trying to fix issue. 2022-07-22 20:54:00 +02:00
aminecmi
8b1fc775aa Analyze. 2022-07-22 20:52:34 +02:00

View File

@ -1,10 +1,22 @@
kind: pipeline
type: docker
name: default
steps:
- name: test
image: maven:3-jdk-10
image: maven:3-jdk-11
commands:
- mvn install -DskipTests=true -Dmaven.javadoc.skip=true -B -V
- mvn test -B
- mvn test -B
- name: analyse
image: maven:3-jdk-11
failure: ignore
commands:
- echo $SONAR_HOST_URL
- echo $SONAR_LOGIN
- mvn clean verify sonar:sonar -Dsonar.projectKey=LDC -Dsonar.host.url=$SONAR_HOST_URL -Dsonar.login=$SONAR_LOGIN
environment:
SONAR_HOST_URL:
from_secret: sonarScannerHostUrl
SONAR_LOGIN:
from_secret: sonarScannerLogin