This repository has been archived on 2023-04-08. You can view files and clone it, but cannot push or open issues/pull-requests.
minecraft-vanilla-tweaks/.gitlab-ci.yml

28 lines
422 B
YAML
Raw Normal View History

2019-10-05 00:58:56 +02:00
image: java:8-jdk
stages:
- build
before_script:
2019-10-05 01:05:15 +02:00
- echo `pwd` # debug
- echo "$CI_BUILD_NAME, $CI_BUILD_REF_NAME $CI_BUILD_STAGE" # debug
- export GRADLE_USER_HOME=`pwd`/gradle
2019-10-05 00:58:56 +02:00
cache:
paths:
2019-10-05 01:05:15 +02:00
- gradle/wrapper
- gradle/caches
2019-10-05 00:58:56 +02:00
build:
stage: build
script:
2019-10-05 01:00:39 +02:00
- ./gradlew build
2019-10-05 00:58:56 +02:00
artifacts:
paths:
- build/libs/*.jar
expire_in: 1 week
only:
- master
after_script:
- echo "End CI"