Last active
November 13, 2024 07:47
-
-
Save daicham/5ac8461b8b49385244aa0977638c3420 to your computer and use it in GitHub Desktop.
A sample of .gitlab-ci.yml for a gradle project
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |
can anyone provide where will be the default cache will be store and which artifacts we need to add for catching up results
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yep, thanks a lot!