Skip to content
Snippets Groups Projects

CI and other bugs

Merged René Schöne requested to merge ci into master
1 file
+ 28
11
Compare changes
  • Side-by-side
  • Inline
+ 28
11
stages:
- build
- models
# - test
- benchmark
@@ -17,23 +18,39 @@ build:
script:
- ./gradlew --console=plain assemble
#test:
# image: openjdk:11
# stage: test
# needs:
# - build
# script:
# - ./gradlew --console=plain --info test
# artifacts:
# when: always
# reports:
# junit: "*/build/test-results/test/**/TEST-*.xml"
prepareTTCrepo:
# use same image as other jobs, and it has git already available
image: openjdk:11
stage: models
script:
- git clone --depth=1 git@github.com:TransformationToolContest/ttc2018liveContest.git /ttc2018liveContest
- cd solve/src/test/resources
- ln -s /ttc2018liveContest/models .
artifacts:
paths:
- "solve/src/test/resources/models/1"
- "solve/src/test/resources/models/2"
- "solve/src/test/resources/models/32"
test:
image: openjdk:11
stage: test
needs:
- build
- models
script:
- ./gradlew --console=plain --info test
artifacts:
when: always
reports:
junit: "*/build/test-results/test/**/TEST-*.xml"
timing:
image: openjdk:11
stage: benchmark
needs:
- build
- models
script:
- ./all-timed-benchmark.sh
artifacts:
Loading