This repository has been archived on 2026-05-29. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Programmierprojekt/.gitlab-ci.yml
T
2026-03-13 23:11:28 +01:00

38 lines
731 B
YAML

stages:
- lint
- build
# Reusable definitions
.gradle-cache: &gradle-cache
cache:
key: '$CI_PROJECT_ID-gradle'
paths:
- .gradle/
- ~/.gradle/caches/
# Jobs
checkstyle:
<<: *gradle-cache
stage: lint
image: gradle:9.3.1-jdk25
script:
- gradle checkstyleMain checkstyleTest
artifacts:
when: always
paths:
- build/reports/checkstyle/main.html
- build/reports/checkstyle/test.html
expose_as: 'Checkstyle Report'
expire_in: 1 week
rules:
- when: manual
compile-check:
<<: *gradle-cache
stage: build
image: gradle:9.3.1-jdk25
script:
- gradle compileTestJava
rules:
- when: manual