Launcher/.gitlab-ci.yml

36 lines
569 B
YAML
Raw Normal View History

2019-05-14 15:11:55 +03:00
image: java:8-jdk
stages:
- build
- test
- deploy
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:
2019-05-14 15:33:49 +03:00
- git submodule update --init
2019-05-14 15:11:55 +03:00
- ./gradlew assemble
artifacts:
paths:
- LaunchServer/build/libs/*.jar
- ServerWrapper/build/libs/*.jar
expire_in: 1 week
test:
stage: test
script:
- ./gradlew check
after_script:
- echo "End CI"