mirror of
https://github.com/pmai/sha3.git
synced 2025-12-21 15:24:28 +01:00
28 lines
850 B
YAML
28 lines
850 B
YAML
language: lisp
|
|
sudo: required
|
|
|
|
env:
|
|
matrix:
|
|
- LISP=abcl
|
|
- LISP=allegro
|
|
- LISP=sbcl
|
|
- LISP=sbcl32
|
|
- LISP=ccl
|
|
- LISP=ccl32
|
|
- LISP=clisp
|
|
- LISP=clisp32
|
|
- LISP=ecl
|
|
|
|
install:
|
|
- curl -L https://github.com/luismbo/cl-travis/raw/master/install.sh | sh
|
|
- git clone https://github.com/gvanas/KeccakCodePackage.git
|
|
|
|
script:
|
|
- cl -e '(asdf:load-system "sha3")
|
|
(load (compile-file "keccak-reference.lisp"))
|
|
(unless (keccak:test-sha3-msgkat "KeccakCodePackage/TestVectors/"
|
|
(lambda (cl-user::total-bits cl-user::bit-rate cl-user::output-bits cl-user::message)
|
|
(declare (ignore cl-user::total-bits cl-user::bit-rate))
|
|
(sha3:sha3-digest-vector cl-user::message :output-bit-length cl-user::output-bits)))
|
|
(uiop:quit 1))'
|