# HG changeset patch # User ellis # Date 1704342939 18000 # Node ID 4905e93756d70a4e0bdce1a84df1ba4ad562ef6c # Parent 28ed81f2d290d3ba8f2bdc0cdfa32c4bc224478d bin sniping diff -r 28ed81f2d290 -r 4905e93756d7 makefile --- a/makefile Wed Jan 03 23:20:48 2024 -0500 +++ b/makefile Wed Jan 03 23:35:39 2024 -0500 @@ -187,20 +187,20 @@ CORE_SRC=/usr/local/share/lisp/core dist/lisp/bin:scripts/sbcl-make-bin.sh $< bin/skel - cp $(CORE_SRC)/core/lisp/app/bin/skel $@ - rm -f $(CORE_SRC)/core/lisp/app/bin/skel.fasl + cp $(CORE_SRC)/lisp/app/bin/skel $@ + rm -f $(CORE_SRC)/lisp/app/bin/skel.fasl $< bin/organ - cp $(CORE_SRC)/core/lisp/app/bin/organ $@ - rm -f $(CORE_SRC)/core/lisp/app/bin/organ.fasl + cp $(CORE_SRC)/lisp/app/bin/organ $@ + rm -f $(CORE_SRC)/lisp/app/bin/organ.fasl $< bin/homer - cp $(CORE_SRC)/core/lisp/app/bin/homer $@ - rm -f $(CORE_SRC)/core/lisp/app/bin/homer.fasl + cp $(CORE_SRC)/lisp/app/bin/homer $@ + rm -f $(CORE_SRC)/lisp/app/bin/homer.fasl $< bin/packy - cp $(CORE_SRC)/core/lisp/app/bin/packy $@ - rm -f $(CORE_SRC)/core/lisp/app/bin/packy.fasl + cp $(CORE_SRC)/lisp/app/bin/packy $@ + rm -f $(CORE_SRC)/lisp/app/bin/packy.fasl $< bin/rdb - cp $(CORE_SRC)/core/lisp/app/bin/rdb $@ - rm -f $(CORE_SRC)/core/lisp/app/bin/rdb.fasl + cp $(CORE_SRC)/lisp/app/bin/rdb $@ + rm -f $(CORE_SRC)/lisp/app/bin/rdb.fasl dist/lisp:dist/lisp/fasl dist/lisp/bin diff -r 28ed81f2d290 -r 4905e93756d7 virt/build-ci-operator.sh --- a/virt/build-ci-operator.sh Wed Jan 03 23:20:48 2024 -0500 +++ b/virt/build-ci-operator.sh Wed Jan 03 23:35:39 2024 -0500 @@ -4,7 +4,10 @@ buildah config --volume /mnt/y $id # save a fresh core buildah config --workingdir /infra $id +buildah run --net host $id apk add --no-cache tree-sitter-dev +buildah run --net host $id hg pull -u +buildah run --net host $id sh -c 'cd /usr/local/share/lisp/core && hg pull -u' buildah run --net host $id make operator buildah config --workingdir /home/$USER $id -buildah config --entrypoint '["/usr/local/bin/sbcl", "--core", "/usr/local/lib/sbcl/prelude.fasl"]' $id +# buildah config --entrypoint '["/usr/local/bin/sbcl", "--core", "/usr/local/lib/sbcl/prelude.fasl"]' $id buildah commit $id ci-operator