updated pipeline

This commit is contained in:
danielb 2024-05-26 00:17:23 +00:00
parent 896c2c1e73
commit 3eb9f738ef

View File

@ -8,13 +8,18 @@ stages:
build: build:
stage: build stage: build
script: script:
- mvn package - mvn install -B
artifacts:
paths:
- target/*.jar
expire_in: 1 week
test: test:
stage: test stage: test
script: script:
- mvn test - mvn test
production:
stage: production
script:
- mvn package
artifacts:
paths:
- target/*.jar
expire_in: 1 week