mirror of
https://github.com/pmai/sha3.git
synced 2025-12-22 07:44:29 +01:00
Fix travis CI build for clisp/ecl
This commit is contained in:
10
.travis.yml
10
.travis.yml
@ -13,6 +13,10 @@ env:
|
|||||||
- LISP=clisp32
|
- LISP=clisp32
|
||||||
- LISP=ecl
|
- LISP=ecl
|
||||||
|
|
||||||
|
matrix:
|
||||||
|
allow_failures:
|
||||||
|
- env: LISP=allegro
|
||||||
|
|
||||||
install:
|
install:
|
||||||
- curl -L https://github.com/luismbo/cl-travis/raw/master/install.sh | sh
|
- curl -L https://github.com/luismbo/cl-travis/raw/master/install.sh | sh
|
||||||
- git clone https://github.com/gvanas/KeccakCodePackage.git
|
- git clone https://github.com/gvanas/KeccakCodePackage.git
|
||||||
@ -21,7 +25,7 @@ script:
|
|||||||
- cl -e '(asdf:load-system "sha3")
|
- cl -e '(asdf:load-system "sha3")
|
||||||
(load (compile-file "keccak-reference.lisp"))
|
(load (compile-file "keccak-reference.lisp"))
|
||||||
(unless (keccak:test-sha3-msgkat "KeccakCodePackage/TestVectors/"
|
(unless (keccak:test-sha3-msgkat "KeccakCodePackage/TestVectors/"
|
||||||
(lambda (total-bits bit-rate output-bits message)
|
(lambda (cl-user::total-bits cl-user::bit-rate cl-user::output-bits cl-user::message)
|
||||||
(declare (ignore total-bits bit-rate))
|
(declare (ignore cl-user::total-bits cl-user::bit-rate))
|
||||||
(sha3:sha3-digest-vector message :output-bit-length output-bits)))
|
(sha3:sha3-digest-vector cl-user::message :output-bit-length cl-user::output-bits)))
|
||||||
(uiop:quit 1))'
|
(uiop:quit 1))'
|
||||||
|
|||||||
Reference in New Issue
Block a user