Skip to content
Snippets Groups Projects

Resolve "Creation of jar in CI fails"

Merged René Schöne requested to merge 26-creation-of-jar-in-ci-fails into develop
+ 6
7
stages:
- build
# - test
- test
build:
image: openjdk:8
stage: build
script:
- ./gradlew --console=plain assemble jar
- ls -R /builds/jastadd/relational-rags/build/
artifacts:
paths:
- "/builds/jastadd/relational-rags/build/libs/relast-*.jar"
# test:
# image: openjdk:8
# stage: test
# script:
# - ./gradlew --console=plain --info test
test:
image: openjdk:8
stage: test
script:
- ./gradlew --console=plain --info test
Loading