changelog shortlog graph tags branches files raw help

Mercurial > infra / changeset: merge

changeset 269: 2e100f53d0d7
parent 268: 9ff6664cd5a9
child 270: 147c13d8a5b4
child 272: a2313c7003d4
author: Richard Westhaver <ellis@rwest.io>
date: Sun, 16 Jun 2024 05:02:27 +0000
files: .hgsubstate autogen.lisp skelfile
description: merge
     1.1--- a/.hgsubstate	Sun Jun 16 01:04:20 2024 -0400
     1.2+++ b/.hgsubstate	Sun Jun 16 05:02:27 2024 +0000
     1.3@@ -1,4 +1,4 @@
     1.4 36849cbd95545dc18f5a4a3d07c9055beca38f0b box
     1.5 d5b76348e00ed20d362eb1a4109abd45a784cd7b etc
     1.6 411f423567fcee89ca7f50fbeca938ada70c2cf1 home
     1.7-759570e2f4d534adfa3d1b2eda0fb8f72b148b1b pod
     1.8+65b548b0ce40e42970793abdbe8ab5c03bf33006 pod
     2.1--- a/autogen.lisp	Sun Jun 16 01:04:20 2024 -0400
     2.2+++ b/autogen.lisp	Sun Jun 16 05:02:27 2024 +0000
     2.3@@ -46,7 +46,7 @@
     2.4         (operator-builder (sb-thread:make-thread (lambda () (sk-call* *skel-project* :archlinux :box))))
     2.5         (worker-builder (sb-thread:make-thread (lambda () (sk-call* *skel-project* :alpine :worker)))))
     2.6     (std/thread:wait-for-threads
     2.7-     (list comp-builder packy-builder operator-builder worker-builder))))
     2.8+     (list comp-builder packy-builder))))
     2.9 
    2.10 (defun autogen ()
    2.11   "Auto-generate the INFRA system."
     3.1--- a/skelfile	Sun Jun 16 01:04:20 2024 -0400
     3.2+++ b/skelfile	Sun Jun 16 05:02:27 2024 +0000
     3.3@@ -16,8 +16,9 @@
     3.4  (src () #$mkdir -pv .stash/src$#)
     3.5  (bin () #$mkdir -pv .stash/bin$#)
     3.6  ;; src
     3.7- (repos (src) #$hg clone https://vc.compiler.company/comp/repos .stash/src/comp$#)
     3.8- (packy-repos (src) #$hg clone https://vc.compiler.company/comp/repos .stash/src/packy$#)
     3.9+ (repos (src) #$cd .stash && curl -O https://packy.compiler.company/src/comp.tar.zst && \
    3.10+        unzstd comp.tar.zst && tar -xf comp.tar -C src && rm comp.tar$#)
    3.11+ (packy-repos (src) #$cd .stash && curl -O https://vc.compiler.company/src/packy.tar.zst$#)
    3.12  ;; containers
    3.13  (archlinux () #$podman build -f pod/Containerfile.archlinux . -t localhost/archlinux$#)
    3.14  (alpine () #$podman build -f pod/Containerfile.alpine . -t localhost/alpine$#)