blob: 7845f566c4a42d5759d26f74ffb5c6b1536aea14 [file] [log] [blame]
image: eclipse-temurin:17
stages:
- build
# Disable the Gradle daemon for Continuous Integration servers as correctness
# is usually a priority over speed in CI environments. Using a fresh
# runtime for each build is more reliable since the runtime is completely
# isolated from any previous builds.
variables:
GRADLE_OPTS: "-Dorg.gradle.daemon=false"
before_script:
- GRADLE_USER_HOME="$(pwd)/.gradle"
- export GRADLE_USER_HOME
build:
stage: build
script:
- ./gradlew --build-cache shadowJar
artifacts:
paths:
- app/build/libs/korapxmltool.jar
cache:
key: "$CI_COMMIT_REF_NAME"
policy: push
paths:
- build
- .gradle