Skip to content

Commit

Permalink
Increase clisp runner memory and re-enable it
Browse files Browse the repository at this point in the history
  • Loading branch information
tizoc committed Mar 28, 2021
1 parent 201875a commit ab0ac4c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
- name: Setup dependencies (Linux)
if: ${{ matrix.os == 'ubuntu' }}
run: |
sudo apt install -y sbcl ecl libffi-dev
sudo apt install -y clisp sbcl ecl libffi-dev
wget http://mr.gy/blog/clozure-cl_1.11_amd64.deb
sudo dpkg -i clozure-cl_1.11_amd64.deb
- name: Setup dependencies (MacOS)
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ else
Slash=/
ArchiveSuffix=.tar.gz
BinarySuffix=
All=ccl ecl sbcl
All=clisp ccl ecl sbcl
ifeq ($(OSName),freebsd)
All=ccl ecl sbcl
else ifeq ($(OSName),openbsd)
Expand Down Expand Up @@ -79,7 +79,7 @@ ShenCCL=.$(Slash)bin$(Slash)ccl$(Slash)$(BinaryName)
ShenECL=.$(Slash)bin$(Slash)ecl$(Slash)$(BinaryName)
ShenSBCL=.$(Slash)bin$(Slash)sbcl$(Slash)$(BinaryName)

RunCLisp=$(ShenCLisp) --clisp-m 10MB
RunCLisp=$(ShenCLisp) --clisp-m 64MB
RunCCL=$(ShenCCL)
RunECL=$(ShenECL)
RunSBCL=$(ShenSBCL)
Expand Down

0 comments on commit ab0ac4c

Please sign in to comment.