Enabled whole matrix.
This commit is contained in:
parent
66f3745b33
commit
397ab7e6c7
1 changed files with 27 additions and 28 deletions
55
.github/workflows/ci.yml
vendored
55
.github/workflows/ci.yml
vendored
|
@ -16,45 +16,44 @@ on:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
run-tests:
|
run-tests:
|
||||||
|
runs-on: ${{ matrix.os }}
|
||||||
|
continue-on-error: ${{ matrix.can-fail || false }}
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
os:
|
os:
|
||||||
- ubuntu-latest
|
- ubuntu-latest
|
||||||
# - macos-latest
|
- macos-latest
|
||||||
quicklisp-dist:
|
quicklisp-dist:
|
||||||
- quicklisp
|
- quicklisp
|
||||||
- ultralisp
|
- ultralisp
|
||||||
lisp:
|
lisp:
|
||||||
- sbcl-bin
|
- sbcl-bin
|
||||||
- ccl-bin
|
- ccl-bin
|
||||||
# - ecl
|
- ecl
|
||||||
# - abcl
|
- abcl
|
||||||
# - allegro
|
- allegro
|
||||||
# - clisp
|
- clisp
|
||||||
# - cmucl
|
- cmucl
|
||||||
# include:
|
include:
|
||||||
# # Seems allegro is does not support 64bit OSX.
|
# Seems allegro is does not support 64bit OSX.
|
||||||
# # Unable to install it using Roswell:
|
# Unable to install it using Roswell:
|
||||||
# # alisp is not executable. Missing 32bit glibc?
|
# alisp is not executable. Missing 32bit glibc?
|
||||||
# - lisp: allegro
|
- lisp: allegro
|
||||||
# os: macos-latest
|
os: macos-latest
|
||||||
# can-fail: true
|
can-fail: true
|
||||||
# # CLisp on Ubuntu can't be installed because of the error:
|
# CLisp on Ubuntu can't be installed because of the error:
|
||||||
# # #<FOREIGN-VARIABLE "rl_readline_state" #x00007FA93E698850> does not have
|
# #<FOREIGN-VARIABLE "rl_readline_state" #x00007FA93E698850> does not have
|
||||||
# # the required size or alignment
|
# the required size or alignment
|
||||||
# - lisp: clisp
|
- lisp: clisp
|
||||||
# os: ubuntu-latest
|
os: ubuntu-latest
|
||||||
# can-fail: true
|
can-fail: true
|
||||||
# # CMUCL is 32bit and cant' work on 64bit OSX:
|
# CMUCL is 32bit and cant' work on 64bit OSX:
|
||||||
# # .roswell/impls/x86-64/darwin/cmu-bin/21d/bin/lisp is not executable. Missing 32bit glibc?
|
# .roswell/impls/x86-64/darwin/cmu-bin/21d/bin/lisp is not executable. Missing 32bit glibc?
|
||||||
# - lisp: cmucl
|
- lisp: cmucl
|
||||||
# os: macos-latest
|
os: macos-latest
|
||||||
# can-fail: true
|
can-fail: true
|
||||||
|
|
||||||
|
|
||||||
runs-on: ${{ matrix.os }}
|
|
||||||
continue-on-error: ${{ matrix.can-fail || false }}
|
|
||||||
|
|
||||||
env:
|
env:
|
||||||
LISP: ${{ matrix.lisp }}
|
LISP: ${{ matrix.lisp }}
|
||||||
|
|
Loading…
Reference in a new issue