fix(container-stack): repair clean-build breakages + add podman smoke CI#37
Merged
Merged
Conversation
Resolves the maintenance pass tracked in stapeln#17. - vordr/.gitignore: stop ignoring Cargo.lock. The binary crate's lockfile must stay tracked (Containerfile builds with `cargo build --locked`); the ignore rule was the root cause of the "Cargo.lock not committed" clean-build failure. - cerro-torre/Containerfile: drop `COPY config/ config/`. config/ is Alire-generated and gitignored, so it is absent on a fresh clone and the COPY broke the build; `alr build` regenerates it. - Add .github/workflows/container-stack-smoke.yml: matrix `podman build` of every container-stack Containerfile so the whole class of early build-step regressions is gated on every push. cerro-torre's full Ada build depends on the un-vendored upstream `proven` library and is built non-blocking until that is available. https://claude.ai/code/session_014cznZXkqptPSoZDFhp7bhc
GitHub's ubuntu-latest image no longer ships podman preinstalled, so the smoke jobs failed in ~14s at the `podman version` step. Install podman via apt before building. https://claude.ai/code/session_014cznZXkqptPSoZDFhp7bhc
|
This was referenced May 15, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



Closes #17.
Context
#17 reported that four of the five
container-stack/Containerfiles failed on a clean build. Auditing the current tree:COPY config/ config/clean-build break, fixed here.gitignorestill ignored it (latent regression) — fixed hereChanges
vordr/.gitignore— stop ignoringCargo.lock. vordr ships a binary crate and its Containerfile builds withcargo build --locked; the ignore rule was the root cause of the "Cargo.lock not committed" failure and would silently re-drop the lockfile on any regeneration.cerro-torre/Containerfile— dropCOPY config/ config/.config/is Alire-generated and gitignored, so it is absent on a fresh clone and theCOPYbroke the build beforealr build(which regenerates it) ever ran..github/workflows/container-stack-smoke.yml— matrixpodman buildof everycontainer-stack/Containerfile on changes to that tree. This is the durable guard [meta] Wave 1 container-stack: Containerfiles need maintenance pass #17 asks for: every one of the four bug classes lives in an early build step, so a realpodman buildcatches the whole class on every push. cerro-torre's fullalr builddepends on the un-vendored upstreamprovenAda library (a concern separate from [meta] Wave 1 container-stack: Containerfiles need maintenance pass #17), so it is built non-blocking untilprovenis available while still exercising and logging the Alire-download step.Test plan
container-stack smoke buildworkflow runs and thevordr,svalinn,rokur,selurjobs go greencerro-torrejob runs, exercises the Alire download step, and is reported non-blockingWorkflow Security Linterpasses (SPDX header, top-levelpermissions:, SHA-pinned action all satisfied)https://claude.ai/code/session_014cznZXkqptPSoZDFhp7bhc
Generated by Claude Code