changelog shortlog graph tags branches changeset files revisions annotate raw help

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

changeset 67: 28ed81f2d290
parent: e627a4f4046a
child: 4905e93756d7
author: ellis <ellis@rwest.io>
date: Wed, 03 Jan 2024 23:20:48 -0500
permissions: -rwxr-xr-x
description: emacs-mini
1 #!/usr/bin/env bash
2 id=$(buildah from ci-worker)
3 buildah run $id adduser $USER -D
4 buildah config --volume /mnt/y $id
5 # save a fresh core
6 buildah config --workingdir /infra $id
7 buildah run --net host $id make operator
8 buildah config --workingdir /home/$USER $id
9 buildah config --entrypoint '["/usr/local/bin/sbcl", "--core", "/usr/local/lib/sbcl/prelude.fasl"]' $id
10 buildah commit $id ci-operator