Skip to content

Commit

Permalink
Enable ccl, clisp, and cmu just to see if it will work.
Browse files Browse the repository at this point in the history
  • Loading branch information
svetlyak40wt committed May 4, 2024
1 parent 91828f0 commit 568257c
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 14 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,19 +21,19 @@
"exclude": [
{
"quicklisp": "quicklisp",
"lisp": "abcl-bin"
"lisp": "ccl-bin"
},
{
"quicklisp": "quicklisp",
"lisp": "clasp"
"lisp": "clisp-head"
},
{
"quicklisp": "quicklisp",
"lisp": "lispworks"
"lisp": "clasp-bin"
},
{
"quicklisp": "quicklisp",
"lisp": "mkcl"
"lisp": "cmu-bin"
},
{
"quicklisp": "quicklisp",
Expand All @@ -46,10 +46,10 @@
],
"lisp": [
"sbcl-bin",
"abcl-bin",
"clasp",
"lispworks",
"mkcl",
"ccl-bin",
"clisp-head",
"clasp-bin",
"cmu-bin",
"ecl"
]
}
Expand Down
17 changes: 11 additions & 6 deletions src/ci.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,21 @@
(defparameter *lisp-implementations*
(list "sbcl-bin"
;; Some tests fail on CCL
;; "ccl-bin/1.12.1"
"abcl-bin"
"ccl-bin"
"clisp-head"
;; Some tests fail on ABCL
;; "abcl-bin"
;; At 2023-04-22 tests started to fail on Allegro with error:
;; Allegro CL(pid 6257): System Error (gsgc) scavenge found ref to cons outside cons area in 0xffba645c
;; "allegro"
"clasp"
"clasp-bin"
;; This CL implementation does not work in any matrix combinations
;; "cmu-bin"
"lispworks"
"mkcl"
"cmu-bin"
;; Lispworks is not supported by setup-lisp action:
;; "lispworks"
;; MKCL has problems when setup-lisp tries to install it:
;; https://github.com/40ants/setup-lisp/issues/17
;; "mkcl"
;; This fails to install under the Roswell on Ubuntu
;; "npt"
"ecl") )
Expand Down

0 comments on commit 568257c

Please sign in to comment.