WorldSystem/.gitlab-ci.yml

20 lines
244 B
YAML
Raw Normal View History

2024-05-26 01:52:24 +02:00
image: maven:3-eclipse-temurin-21-alpine
2024-05-23 00:19:58 +02:00
stages:
- build
- test
- deploy
build:
stage: build
script:
2024-05-26 01:52:24 +02:00
- mvn build
2024-05-23 00:19:58 +02:00
artifacts:
paths:
2024-05-26 01:52:24 +02:00
- target/*.jar
2024-05-23 00:19:58 +02:00
expire_in: 1 week
test:
2024-05-26 01:52:24 +02:00
stage: testgti
2024-05-23 00:19:58 +02:00
script:
2024-05-26 01:52:24 +02:00
- mvn test