changelog shortlog graph tags branches files raw help

Mercurial > infra / changeset: bin sniping

changeset 68: 4905e93756d7
parent 67: 28ed81f2d290
child 69: 4260b565dfb3
author: ellis <ellis@rwest.io>
date: Wed, 03 Jan 2024 23:35:39 -0500
files: makefile virt/build-ci-operator.sh
description: bin sniping
     1.1--- a/makefile	Wed Jan 03 23:20:48 2024 -0500
     1.2+++ b/makefile	Wed Jan 03 23:35:39 2024 -0500
     1.3@@ -187,20 +187,20 @@
     1.4 CORE_SRC=/usr/local/share/lisp/core
     1.5 dist/lisp/bin:scripts/sbcl-make-bin.sh
     1.6 	$< bin/skel
     1.7-	cp $(CORE_SRC)/core/lisp/app/bin/skel $@
     1.8-	rm -f $(CORE_SRC)/core/lisp/app/bin/skel.fasl
     1.9+	cp $(CORE_SRC)/lisp/app/bin/skel $@
    1.10+	rm -f $(CORE_SRC)/lisp/app/bin/skel.fasl
    1.11 	$< bin/organ
    1.12-	cp $(CORE_SRC)/core/lisp/app/bin/organ $@
    1.13-	rm -f $(CORE_SRC)/core/lisp/app/bin/organ.fasl
    1.14+	cp $(CORE_SRC)/lisp/app/bin/organ $@
    1.15+	rm -f $(CORE_SRC)/lisp/app/bin/organ.fasl
    1.16 	$< bin/homer
    1.17-	cp $(CORE_SRC)/core/lisp/app/bin/homer $@
    1.18-	rm -f $(CORE_SRC)/core/lisp/app/bin/homer.fasl
    1.19+	cp $(CORE_SRC)/lisp/app/bin/homer $@
    1.20+	rm -f $(CORE_SRC)/lisp/app/bin/homer.fasl
    1.21 	$< bin/packy
    1.22-	cp $(CORE_SRC)/core/lisp/app/bin/packy $@
    1.23-	rm -f $(CORE_SRC)/core/lisp/app/bin/packy.fasl
    1.24+	cp $(CORE_SRC)/lisp/app/bin/packy $@
    1.25+	rm -f $(CORE_SRC)/lisp/app/bin/packy.fasl
    1.26 	$< bin/rdb
    1.27-	cp $(CORE_SRC)/core/lisp/app/bin/rdb $@
    1.28-	rm -f $(CORE_SRC)/core/lisp/app/bin/rdb.fasl
    1.29+	cp $(CORE_SRC)/lisp/app/bin/rdb $@
    1.30+	rm -f $(CORE_SRC)/lisp/app/bin/rdb.fasl
    1.31 
    1.32 dist/lisp:dist/lisp/fasl dist/lisp/bin
    1.33 
     2.1--- a/virt/build-ci-operator.sh	Wed Jan 03 23:20:48 2024 -0500
     2.2+++ b/virt/build-ci-operator.sh	Wed Jan 03 23:35:39 2024 -0500
     2.3@@ -4,7 +4,10 @@
     2.4 buildah config --volume /mnt/y $id
     2.5 # save a fresh core
     2.6 buildah config --workingdir /infra $id
     2.7+buildah run --net host $id apk add --no-cache tree-sitter-dev
     2.8+buildah run --net host $id hg pull -u
     2.9+buildah run --net host $id sh -c 'cd /usr/local/share/lisp/core && hg pull -u'
    2.10 buildah run --net host $id make operator
    2.11 buildah config --workingdir /home/$USER $id
    2.12-buildah config --entrypoint '["/usr/local/bin/sbcl", "--core", "/usr/local/lib/sbcl/prelude.fasl"]' $id
    2.13+# buildah config --entrypoint '["/usr/local/bin/sbcl", "--core", "/usr/local/lib/sbcl/prelude.fasl"]' $id
    2.14 buildah commit $id ci-operator