dchat/.woodpecker/.java.yml
Augusto Dwenger J. d343c53dce
Some checks failed
ci/woodpecker/push/java Pipeline was successful
ci/woodpecker/push/oci-image-build Pipeline failed
ci: Fix file naming
This should make them discoverable again.
2024-11-29 19:54:00 +01:00

23 lines
504 B
YAML

matrix:
MODULE:
- bot
when:
event: [tag, push, manual]
variables:
- &image 'docker.io/maven:3.9-eclipse-temurin-23-alpine'
steps:
compile:
image: *image
commands:
- mvn --batch-mode --no-transfer-progress -pl ${MODULE} -am compile
test:
image: *image
commands:
- mvn --batch-mode --no-transfer-progress -pl ${MODULE} -am test
build:
image: *image
commands:
- mvn --batch-mode --no-transfer-progress -Dmaven.test.skip -pl ${MODULE} -am install