changelog shortlog graph tags branches changeset file revisions annotate raw help

Mercurial > infra / virt/build-ci-operator.sh

revision 67: 28ed81f2d290
parent 45: e627a4f4046a
child 68: 4905e93756d7
     1.1--- a/virt/build-ci-operator.sh	Wed Jan 03 22:49:49 2024 -0500
     1.2+++ b/virt/build-ci-operator.sh	Wed Jan 03 23:20:48 2024 -0500
     1.3@@ -1,8 +1,10 @@
     1.4 #!/usr/bin/env bash
     1.5 id=$(buildah from ci-worker)
     1.6-buildah add $id etc/skel /etc
     1.7 buildah run $id adduser $USER -D
     1.8+buildah config --volume /mnt/y $id
     1.9+# save a fresh core
    1.10+buildah config --workingdir /infra $id
    1.11+buildah run --net host $id make operator
    1.12 buildah config --workingdir /home/$USER $id
    1.13-buildah config --volume /mnt/y $id
    1.14 buildah config --entrypoint '["/usr/local/bin/sbcl", "--core", "/usr/local/lib/sbcl/prelude.fasl"]' $id
    1.15 buildah commit $id ci-operator