From 0aca46e76c68131d3b88ca235c1c69380c888aa6 Mon Sep 17 00:00:00 2001 From: "Pierre R. Mai" Date: Fri, 23 Feb 2018 02:19:37 +0100 Subject: [PATCH] Fix travis CI build for clisp/ecl --- .travis.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index d0f994e..dcc5197 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,6 +13,10 @@ env: - LISP=clisp32 - LISP=ecl +matrix: + allow_failures: + - env: LISP=allegro + install: - curl -L https://github.com/luismbo/cl-travis/raw/master/install.sh | sh - git clone https://github.com/gvanas/KeccakCodePackage.git @@ -21,7 +25,7 @@ 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))) + (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))'