Add readme for building

This commit is contained in:
Rui Hu
2024-03-14 13:35:49 +08:00
parent 66f05c56bf
commit 6a89285dd6
3 changed files with 41 additions and 5 deletions

View File

@@ -2,8 +2,26 @@ 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