ci: remove Drone CI configuration
Some checks failed
CI / build (17) (push) Successful in 1m14s
CI / build (11) (push) Has been cancelled
CI / build (true, 21) (push) Failing after 1m20s

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:
2024-11-30 18:33:03 +01:00
parent 3dc04cc803
commit e8bd0aec31

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