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

29 lines
446 B
YAML
Raw Normal View History

2019-10-05 00:58:56 +02:00
image: java:8-jdk
stages:
- build
2019-10-05 01:21:55 +02:00
before_script:
- 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
2019-10-05 01:21:55 +02:00
cache:
paths:
- .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
- merge_requests
2019-10-05 00:58:56 +02:00
after_script:
- echo "End CI"