From 499da89ade6b65d7864194b46bd1413afe29154c Mon Sep 17 00:00:00 2001 From: Alexander Artemenko Date: Tue, 2 Feb 2021 10:20:43 +0300 Subject: [PATCH] Commented include ection. --- .github/workflows/install.yml | 36 +++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/.github/workflows/install.yml b/.github/workflows/install.yml index 64648f7..c443b37 100644 --- a/.github/workflows/install.yml +++ b/.github/workflows/install.yml @@ -33,24 +33,24 @@ jobs: # - allegro # - clisp # - cmucl - include: - # Seems allegro is does not support 64bit OSX. - # Unable to install it using Roswell: - # alisp is not executable. Missing 32bit glibc? - - lisp: allegro - os: macos-latest - can-fail: true - # CLisp on Ubuntu can't be installed because of the error: - # # does not have - # the required size or alignment - - lisp: clisp - os: ubuntu-latest - can-fail: true - # 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? - - lisp: cmucl - os: macos-latest - can-fail: true + # include: + # # Seems allegro is does not support 64bit OSX. + # # Unable to install it using Roswell: + # # alisp is not executable. Missing 32bit glibc? + # - lisp: allegro + # os: macos-latest + # can-fail: true + # # CLisp on Ubuntu can't be installed because of the error: + # # # does not have + # # the required size or alignment + # - lisp: clisp + # os: ubuntu-latest + # can-fail: true + # # 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? + # - lisp: cmucl + # os: macos-latest + # can-fail: true runs-on: ${{ matrix.os }}