You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
391 B
YAML

---
include:
- project: "kay/ci-templates"
file:
- "/Semantic-Release.gitlab-ci.yml"
stages:
- build
- review
image: openjdk:17-jdk
before_script:
- export GRADLE_USER_HOME=`pwd`/.gradle
cache:
paths:
- .gradle/wrapper
- .gradle/caches
build:
stage: build
script:
- ./gradlew build
artifacts:
paths:
- build/libs/*.jar
only:
- main