Skip to content

Commit ab0ac4c

Browse files
committed
Increase clisp runner memory and re-enable it
1 parent 201875a commit ab0ac4c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
- name: Setup dependencies (Linux)
4343
if: ${{ matrix.os == 'ubuntu' }}
4444
run: |
45-
sudo apt install -y sbcl ecl libffi-dev
45+
sudo apt install -y clisp sbcl ecl libffi-dev
4646
wget http://mr.gy/blog/clozure-cl_1.11_amd64.deb
4747
sudo dpkg -i clozure-cl_1.11_amd64.deb
4848
- name: Setup dependencies (MacOS)

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ else
4242
Slash=/
4343
ArchiveSuffix=.tar.gz
4444
BinarySuffix=
45-
All=ccl ecl sbcl
45+
All=clisp ccl ecl sbcl
4646
ifeq ($(OSName),freebsd)
4747
All=ccl ecl sbcl
4848
else ifeq ($(OSName),openbsd)
@@ -79,7 +79,7 @@ ShenCCL=.$(Slash)bin$(Slash)ccl$(Slash)$(BinaryName)
7979
ShenECL=.$(Slash)bin$(Slash)ecl$(Slash)$(BinaryName)
8080
ShenSBCL=.$(Slash)bin$(Slash)sbcl$(Slash)$(BinaryName)
8181

82-
RunCLisp=$(ShenCLisp) --clisp-m 10MB
82+
RunCLisp=$(ShenCLisp) --clisp-m 64MB
8383
RunCCL=$(ShenCCL)
8484
RunECL=$(ShenECL)
8585
RunSBCL=$(ShenSBCL)

0 commit comments

Comments
 (0)