Add CI stage for testing reproducibility

This commit is contained in:
Torsten Grote
2018-05-16 17:14:44 -03:00
parent 97f4cd039a
commit 3a35effae9

View File

@@ -11,10 +11,20 @@ before_script:
test:
script:
- ./gradlew animalSnifferMain animalSnifferTest
- ./gradlew test
- ./gradlew --no-daemon animalSnifferMain animalSnifferTest
- ./gradlew --no-daemon test
after_script:
# this file changes every time but should not be cached
# these file change every time but should not be cached
- rm -f $GRADLE_USER_HOME/caches/modules-2/modules-2.lock
- rm -fr $GRADLE_USER_HOME/caches/*/plugin-resolution/
test_reproducible:
image: briar/reproducer:latest
script:
- cd .. && mv briar /opt/briar-reproducer/
- cd /opt/briar-reproducer
- ./reproduce.py ${CI_COMMIT_REF_NAME}
only:
- tags