2023-12-07 23:49:44 +01:00
|
|
|
matrix:
|
|
|
|
MODULE:
|
|
|
|
- db
|
|
|
|
- bot
|
|
|
|
- web
|
|
|
|
- migration
|
2024-02-17 16:25:20 +01:00
|
|
|
- monolith
|
2023-12-07 23:49:44 +01:00
|
|
|
|
|
|
|
variables:
|
|
|
|
- &image 'docker.io/maven:3.9-eclipse-temurin-21'
|
|
|
|
|
|
|
|
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
|