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.

31 lines
449 B
YAML

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