Merge remote-tracking branch 'origin/master'

This commit is contained in:
ceikry 2021-07-16 18:23:07 -05:00
commit 1bd15ff6a8

25
.gitlab-ci.yml Normal file
View file

@ -0,0 +1,25 @@
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 buildJar
artifacts:
paths:
- build/libs/*.jar
expire_in: never
only:
- master