mirror of
https://github.com/AuthMe/AuthMeReloaded.git
synced 2024-11-03 01:00:18 +01:00
8fe92da119
- Add argon2 implementation - Extract argon2 library check to method on Argon 2 - Add link to Wiki page on errors - Check within Argon2Test if the test cases should be run, not in the abstract parent
21 lines
684 B
YAML
21 lines
684 B
YAML
machine:
|
|
java:
|
|
version: oraclejdk8
|
|
dependencies:
|
|
pre:
|
|
- "sudo apt-get update; sudo apt-get install -y git; sudo git clone https://www.github.com/P-H-C/phc-winner-argon2.git argon2-src; cd argon2-src; sudo make; sudo make install"
|
|
general:
|
|
artifacts:
|
|
- "target/AuthMe-*.jar"
|
|
test:
|
|
override:
|
|
- mvn clean install -B
|
|
post:
|
|
- cp ./target/AuthMe-*.jar $CIRCLE_ARTIFACTS
|
|
- cp ./target/AuthMe-*.jar $CIRCLE_ARTIFACTS/AuthMe.jar
|
|
- mkdir -p $CIRCLE_TEST_REPORTS/junit/
|
|
- find . -type f -regex ".*/target/surefire-reports/.*xml" -exec cp {} $CIRCLE_TEST_REPORTS/junit/ \;
|
|
notify:
|
|
webhooks:
|
|
- url: https://webhooks.gitter.im/e/7b92ac1a1741748b26bf
|