Skip to content

Commit

Permalink
Merge pull request #25 from rigetti/pin-sbcl
Browse files Browse the repository at this point in the history
chore: pin SBCL version
  • Loading branch information
notmgsk authored Oct 11, 2023
2 parents 9cdb081 + 6a99887 commit 5737f18
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
name: Install SBCL, libraries, and quicklisp
run: |
sudo apt update && sudo apt install -y sbcl build-essential
sudo git clone --branch sbcl-2.2.0 git://git.code.sf.net/p/sbcl/sbcl /usr/src/sbcl
sudo git clone --branch sbcl-2.2.4 git://git.code.sf.net/p/sbcl/sbcl /usr/src/sbcl
cd /usr/src/sbcl && sudo sh make.sh && sudo sh make-shared-library.sh
sudo apt remove -y sbcl
sudo sh install.sh
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
cd $GITHUB_WORKSPACE/libquil
ls
sbcl --noinform --non-interactive --eval '(ql:quickload :sbcl-librarian)'
sbcl --noinform --non-interactive --eval '(ql:quickload :quilc)'
sbcl --dynamic-space-size 8192 --noinform --non-interactive --eval '(ql:quickload :quilc)'
sbcl --noinform --non-interactive --eval '(asdf:locate-system :sbcl-librarian)'
make
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ endif
all: $(LIBQUIL_TARGET)

libquil.core libquil.c libquil.h libquil.py: src/libquil.lisp src/qvm.lisp src/quilc/*.lisp
sbcl --dynamic-space-size 4096 --load "src/build-image.lisp"
sbcl --dynamic-space-size 8192 --load "src/build-image.lisp"

$(LIBQUIL_TARGET): libquil.core libquil.c
gcc $(CCFLAGS) -o $@ libquil.c -lsbcl
Expand Down
2 changes: 1 addition & 1 deletion versions
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
QVM_VERSION=4617625cb6053b1adfd3f7aea9cd2be328b225f6
QUILC_VERSION=bffea7fdb972cc9b3a50b790246b6a3143c88c7a
SBCL_LIBRARIAN_VERSION=04f7e390c777084ac43b8df9e90593a041da2381
SBCL_VERSION=sbcl-2.2.0
SBCL_VERSION=sbcl-2.2.4
QUICKLISP_VERSION=2022-04-01

0 comments on commit 5737f18

Please sign in to comment.