mirror of
https://github.com/AuthMe/AuthMeReloaded.git
synced 2024-11-06 18:49:39 +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
24 lines
597 B
YAML
24 lines
597 B
YAML
sudo: required
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- oracle-java8-installer
|
|
- git
|
|
|
|
language: java
|
|
jdk: oraclejdk8
|
|
|
|
before_script:
|
|
- "sudo git clone https://www.github.com/P-H-C/phc-winner-argon2.git argon2-src"
|
|
- "cd argon2-src && sudo make && sudo make install && cd .."
|
|
|
|
script: mvn clean verify -B
|
|
|
|
notifications:
|
|
webhooks:
|
|
urls:
|
|
- https://webhooks.gitter.im/e/952357dbd9d3cea70fd5
|
|
on_success: change # options: [always|never|change] default: always
|
|
on_failure: always # options: [always|never|change] default: always
|
|
on_start: false # default: false
|