changelog shortlog graph tags branches files raw help

Mercurial > infra / changeset: updates

changeset 268: 9ff6664cd5a9
parent 267: 1d466eeed96a
child 269: 2e100f53d0d7
author: Richard Westhaver <ellis@rwest.io>
date: Sun, 16 Jun 2024 01:04:20 -0400
files: .hgsubstate autogen.lisp skelfile
description: updates
     1.1--- a/.hgsubstate	Sat Jun 15 23:16:40 2024 -0400
     1.2+++ b/.hgsubstate	Sun Jun 16 01:04:20 2024 -0400
     1.3@@ -1,4 +1,4 @@
     1.4 36849cbd95545dc18f5a4a3d07c9055beca38f0b box
     1.5 d5b76348e00ed20d362eb1a4109abd45a784cd7b etc
     1.6 411f423567fcee89ca7f50fbeca938ada70c2cf1 home
     1.7-98aa8d30816a26ccbb544ee8d156bfb40660a3bf pod
     1.8+759570e2f4d534adfa3d1b2eda0fb8f72b148b1b pod
     2.1--- a/autogen.lisp	Sat Jun 15 23:16:40 2024 -0400
     2.2+++ b/autogen.lisp	Sun Jun 16 01:04:20 2024 -0400
     2.3@@ -43,7 +43,7 @@
     2.4 (defun build-default ()
     2.5   (let ((comp-builder (sb-thread:make-thread (lambda () (sk-call* *skel-project* :repos))))
     2.6         (packy-builder (sb-thread:make-thread (lambda () (sk-call* *skel-project* :packy-repos))))
     2.7-        (operator-builder (sb-thread:make-thread (lambda () (sk-call* *skel-project* :archlinux :operator))))
     2.8+        (operator-builder (sb-thread:make-thread (lambda () (sk-call* *skel-project* :archlinux :box))))
     2.9         (worker-builder (sb-thread:make-thread (lambda () (sk-call* *skel-project* :alpine :worker)))))
    2.10     (std/thread:wait-for-threads
    2.11      (list comp-builder packy-builder operator-builder worker-builder))))
     3.1--- a/skelfile	Sat Jun 15 23:16:40 2024 -0400
     3.2+++ b/skelfile	Sun Jun 16 01:04:20 2024 -0400
     3.3@@ -19,12 +19,12 @@
     3.4  (repos (src) #$hg clone https://vc.compiler.company/comp/repos .stash/src/comp$#)
     3.5  (packy-repos (src) #$hg clone https://vc.compiler.company/comp/repos .stash/src/packy$#)
     3.6  ;; containers
     3.7- (archlinux () #$podman build -f pod/Containerfile.archlinux --no-cache -t localhost/archlinux$#)
     3.8- (alpine () #$podman build -f pod/Containerfile.alpine --no-cache -t localhost/alpine$#)
     3.9- (ubuntu () #$podman build -f pod/Containerfile.alpine --no-cache -t localhost/alpine$#)
    3.10- (box (archlinux) #$podman build -f pod/Containerfile.box --no-cache -t localhost/box$#)
    3.11- (worker (alpine) #$podman build -f pod/Containerfile.worker --no-cache -t localhost/worker$#)
    3.12- (operator (box) #$podman build -f pod/Containerfile.operator --no-cache -t localhost/operator$#)
    3.13+ (archlinux () #$podman build -f pod/Containerfile.archlinux . -t localhost/archlinux$#)
    3.14+ (alpine () #$podman build -f pod/Containerfile.alpine . -t localhost/alpine$#)
    3.15+ (ubuntu () #$podman build -f pod/Containerfile.alpine . -t localhost/alpine$#)
    3.16+ (box (archlinux) #$podman build -f pod/Containerfile.box . -t localhost/box$#)
    3.17+ (worker (alpine) #$podman build -f pod/Containerfile.worker . -t localhost/worker$#)
    3.18+ (operator (box) #$podman build -f pod/Containerfile.operator . -t localhost/operator$#)
    3.19  (containers (archlinux alpine ubuntu box worker operator))
    3.20  ;; programs
    3.21  (bootstrap () #$./bootstrap.sh$#)