padlock-solver/.gitlab-ci.yml

31 lines
538 B
YAML

image: azul/zulu-openjdk:8-latest
stages:
- test
- analyze
# verify the padlock impl independently
unit-test-padlock-impl:
stage: test
script:
- ./gradlew :padlock-impl:test
unit-test-all:
stage: test
script:
- ./gradlew test
artifacts:
when: always
reports:
junit: build/test-results/test/**/TEST-*.xml
run-performance-analyze:
stage: analyze
needs:
- job: unit-test-all
script:
- ./gradlew runPerformanceAnalyze
- cat performance.txt
artifacts:
paths: ['performance.txt']