Enable CI

This commit is contained in:
ceikry 2021-07-16 18:58:02 -05:00
parent 8fd259183b
commit 27683ec0c4
4 changed files with 216 additions and 0 deletions

26
.gitlab-ci.yml Normal file
View file

@ -0,0 +1,26 @@
image: java:8-jdk
stages:
- build
before_script:
# - echo `pwd` # debug
# - echo "$CI_BUILD_NAME, $CI_BUILD_REF_NAME $CI_BUILD_STAGE" # debug
- export GRADLE_USER_HOME=`pwd`/.gradle
cache:
paths:
- .gradle/wrapper
- .gradle/caches
build:
stage: build
script:
- ./gradlew jar
- mv build/libs/*.jar build/libs/2009scape.jar
artifacts:
paths:
- build/libs/*.jar
expire_in: 1 week
only:
- master