Add CI/CD pipelines for Flutter and backend projects

This commit is contained in:
2025-09-21 00:40:13 +02:00
parent 074b5f8f4c
commit 40ec7a0d38
7 changed files with 75 additions and 213 deletions

11
backend/.gitlab-ci.yml Normal file
View File

@@ -0,0 +1,11 @@
build_backend:
stage: build
image: maven:3.9.11-eclipse-temurin-21@sha256:674ec814977fd05dc5cd3627802efb756351f27d4f029bc47b8a7b5156bb9231
script:
- cd backend
- mvn package
artifacts:
paths:
- backend/common/target/
- backend/server/target
expire_in: 1 hour