9d80f47625
attic-closure archetype: no parity-lib builder exists for attic pushes, so
wrap the existing per-arch package build in ci/publish.py (woodpecker-peek
pattern) and expose `nix run .#{stage,publish}-amd64` + `.#publish`.
Two-halves rule: STAGE nix-builds every package in the arch list into the
local store (emmett-buildable); PUBLISH additionally attic-pushes each
closure. Local runs DRY-RUN unless --push/PUBLISH=1; CI sets PUBLISH=1.
The .woodpecker/{amd64,arm64}.yaml now call the same ci/publish.py so CI
and local runs can't drift. arm64 stays node-bound (no emmett cross path),
so it has no local-parity app. ci/build.py becomes a forwarding shim.
21 lines
631 B
Python
21 lines
631 B
Python
#!/usr/bin/env python3
|
|
"""Deprecated shim — superseded by ci/publish.py (emmett#44, cluster#192).
|
|
|
|
Kept so any stale reference keeps working. Forwards to publish.py with the same
|
|
arch arg and forces a real push (PUBLISH=1), matching the old always-push
|
|
behaviour. New callers should use ci/publish.py (dry-run by default) or the
|
|
`nix run .#publish-amd64` flake app.
|
|
"""
|
|
|
|
import os
|
|
import subprocess
|
|
import sys
|
|
|
|
here = os.path.dirname(os.path.abspath(__file__))
|
|
env = dict(os.environ, PUBLISH="1")
|
|
sys.exit(
|
|
subprocess.run(
|
|
[sys.executable, os.path.join(here, "publish.py"), *sys.argv[1:]], env=env
|
|
).returncode
|
|
)
|