-
Notifications
You must be signed in to change notification settings - Fork 6
/
.travis.yml
27 lines (24 loc) · 850 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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 (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))'