mirror of
https://github.com/pmai/sha3.git
synced 2025-12-21 23:34:29 +01:00
Add Travis CI setup
This commit is contained in:
27
.travis.yml
Normal file
27
.travis.yml
Normal file
@ -0,0 +1,27 @@
|
||||
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 (total-bits bit-rate output-bits message)
|
||||
(declare (ignore total-bits bit-rate))
|
||||
(sha3:sha3-digest-vector message :output-bit-length output-bits)))
|
||||
(uiop:quit 1))'
|
||||
Reference in New Issue
Block a user