Skip to content

Commit

Permalink
Commented all unsuppoorted implementations.
Browse files Browse the repository at this point in the history
  • Loading branch information
svetlyak40wt committed May 4, 2024
1 parent 568257c commit 6661231
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 25 deletions.
20 changes: 0 additions & 20 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,22 +19,6 @@
"fail-fast": false,
"matrix": {
"exclude": [
{
"quicklisp": "quicklisp",
"lisp": "ccl-bin"
},
{
"quicklisp": "quicklisp",
"lisp": "clisp-head"
},
{
"quicklisp": "quicklisp",
"lisp": "clasp-bin"
},
{
"quicklisp": "quicklisp",
"lisp": "cmu-bin"
},
{
"quicklisp": "quicklisp",
"lisp": "ecl"
Expand All @@ -46,10 +30,6 @@
],
"lisp": [
"sbcl-bin",
"ccl-bin",
"clisp-head",
"clasp-bin",
"cmu-bin",
"ecl"
]
}
Expand Down
14 changes: 9 additions & 5 deletions src/ci.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,20 @@
(defparameter *lisp-implementations*
(list "sbcl-bin"
;; Some tests fail on CCL
"ccl-bin"
"clisp-head"
;; "ccl-bin"
;; CLISP is not supported by bordeaux-threads
;; but it is a transitive dependency
;; "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-bin"
;; This CL implementation does not work in any matrix combinations
"cmu-bin"
;; CLASP ails with "Too many arguments for option DOCUMENTATION" error:
;; "clasp-bin"
;; CMU fails with "Redefining slot accessor CHUNK-CACHE-CHUNKS for structure type CHUNK-CACHE" error,
;; occured somewhere inside esrap library:
;; "cmu-bin"
;; Lispworks is not supported by setup-lisp action:
;; "lispworks"
;; MKCL has problems when setup-lisp tries to install it:
Expand Down

0 comments on commit 6661231

Please sign in to comment.