ci: remove Drone CI configuration
All checks were successful
CI / build (true, 21) (push) Successful in 49s
CI / build (17) (push) Successful in 48s
CI / build (11) (push) Successful in 49s

All build systems now GitHub Actions workflows, so we can remove the
alternative configuration and only keep a single pipeline definition.
This commit is contained in:
Stefan Kalscheuer 2024-11-30 18:33:03 +01:00
parent 3c6ebecbda
commit 4e228f4e68
Signed by: stefan
GPG Key ID: 3887EC2A53B55430
2 changed files with 1 additions and 32 deletions

View File

@ -1,31 +0,0 @@
kind: pipeline
type: docker
name: java11
steps:
- name: test
image: eclipse-temurin:11-jdk
commands:
- ./mvnw -B clean test
---
kind: pipeline
type: docker
name: java17
steps:
- name: test
image: eclipse-temurin:17-jdk
commands:
- ./mvnw -B clean test
---
kind: pipeline
type: docker
name: java21
steps:
- name: test
image: eclipse-temurin:21-jdk
commands:
- ./mvnw -B clean test

View File

@ -22,7 +22,7 @@ jobs:
- name: Test - name: Test
run: ./mvnw -B -P coverage clean verify run: ./mvnw -B -P coverage clean verify
- name: Analysis - name: Analysis
if: matrix.analysis if: matrix.analysis && env.SONAR_TOKEN != ''
run: > run: >
./mvnw -B sonar:sonar ./mvnw -B sonar:sonar
-Dsonar.host.url=https://sonarcloud.io -Dsonar.host.url=https://sonarcloud.io