Skip to content

Instantly share code, notes, and snippets.

@hendisantika
Forked from daicham/.gitlab-ci.yml
Created April 7, 2020 06:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hendisantika/dffa9b3c7a653f56fe4c291e76557b43 to your computer and use it in GitHub Desktop.
Save hendisantika/dffa9b3c7a653f56fe4c291e76557b43 to your computer and use it in GitHub Desktop.
A sample of .gitlab-ci.yml for a gradle project
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:
- ./gradlew assemble
artifacts:
paths:
- build/libs/*.jar
expire_in: 1 week
only:
- master
test:
stage: test
script:
- ./gradlew check
deploy:
stage: deploy
script:
- ./deploy
after_script:
- echo "End CI"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment