dchat/.woodpecker/.java.yml

24 lines
504 B
YAML
Raw Permalink Normal View History

2023-12-07 23:49:44 +01:00
matrix:
MODULE:
- bot
when:
event: [tag, push, manual]
2023-12-07 23:49:44 +01:00
variables:
- &image 'docker.io/maven:3.9-eclipse-temurin-23-alpine'
2023-12-07 23:49:44 +01:00
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