Skip to content
Snippets Groups Projects
Commit b576cf90 authored by Leonard Haddad's avatar Leonard Haddad :rocket:
Browse files

Update .gitlab-ci.yml

parent 488842a9
No related branches found
No related tags found
No related merge requests found
image: java:latest
stages:
- assemble
- build
- javadoc
- test
......@@ -10,16 +11,23 @@ cache:
- .gradle/wrapper
- .gradle/caches
assemble:
stage: assemble
script:
- ./gradlew assemble
artifacts:
paths:
- build/libs/*.jar
expire_in: 1 week
build:
stage: build
script:
- ./gradlew assemble
- ./gradlew build
artifacts:
paths:
- build/libs/*.jar
expire_in: 1 week
only:
- master
javadoc:
stage: javadoc
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment