molecule-core is a public repo — GHA-hosted minutes are free. The self-hosted Mac mini was only in play to dodge GHA rate limits (memory feedback_selfhosted_runner), but for these specific workflows it came with real costs: - Docker-push workflows emulated linux/amd64 from arm64 via QEMU — every canvas + platform image build ran ~2-3x slower than native. - Six PRs worth of keychain-avoidance hacks in publish-* because `docker login` on macOS writes to osxkeychain unconditionally, and the Mac mini's launchd user-agent keychain is locked. - Homebrew pin-down environment variables (HOMEBREW_NO_*) sprinkled everywhere to work around the shared /opt/homebrew symlink mess on the runner. - Setup-python@v5 couldn't write to /Users/runner, so ci.yml python-lint resorted to a hand-rolled Homebrew python3.11 dance. - Single runner → fan-out contention; CodeQL's 45-min analysis fought the canvas publish for the one slot. Changes across the 7 workflows: - runs-on: [self-hosted, macos, arm64] → ubuntu-latest (every job) - publish-canvas-image + publish-workspace-server-image: drop the hand-rolled auths-map step + QEMU setup + buildx v4 → docker/login-action@v3 + setup-buildx@v3. Linux + amd64 target = native build. - canary-verify + promote-latest: replace `brew install crane` + HOMEBREW_NO_* incantations with imjasonh/setup-crane@v0.4. - codeql.yml: drop `brew install jq` — jq is preinstalled on ubuntu-latest. - ci.yml shellcheck: drop the self-hosted existence check — shellcheck is preinstalled via apt. - ci.yml python-lint: replace the Homebrew python3.11 path dance with actions/setup-python@v5 (which works fine on GHA-hosted), add requirements.txt caching while we're there. - Remove stale comments referencing "the self-hosted runner", "Mac mini", keychain, osxkeychain etc. The self-hosted Mac mini remains in service for private-repo workflows only. Memory feedback_selfhosted_runner updated to reflect the public-repo scope carve-out. Net -96 lines across the 7 files. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
86 lines
2.8 KiB
YAML
86 lines
2.8 KiB
YAML
name: promote-latest
|
|
|
|
# Manually retag ghcr.io/molecule-ai/platform:staging-<sha> → :latest
|
|
# (and the same for the tenant image). Use this to:
|
|
#
|
|
# 1. Promote a :staging-<sha> to prod before the canary fleet is live
|
|
# (one-off during the initial rollout).
|
|
# 2. Roll back :latest to a prior known-good digest after a bad
|
|
# promotion slipped past canary (use scripts/rollback-latest.sh
|
|
# for a local / emergency path; this workflow is for scheduled
|
|
# or from-browser promotions).
|
|
#
|
|
# Running this workflow needs no extra secrets — GitHub's default
|
|
# GITHUB_TOKEN has write:packages for repo-owned GHCR images, which
|
|
# is all we need for a remote retag via `crane tag`.
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
sha:
|
|
description: 'Short sha to promote (e.g. 4c1d56e). Must match an existing :staging-<sha> tag.'
|
|
required: true
|
|
type: string
|
|
|
|
permissions:
|
|
contents: read
|
|
packages: write
|
|
|
|
env:
|
|
IMAGE_NAME: ghcr.io/molecule-ai/platform
|
|
TENANT_IMAGE_NAME: ghcr.io/molecule-ai/platform-tenant
|
|
|
|
jobs:
|
|
promote:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: imjasonh/setup-crane@v0.4
|
|
|
|
- name: GHCR login
|
|
run: |
|
|
echo "${{ secrets.GITHUB_TOKEN }}" \
|
|
| crane auth login ghcr.io -u "${{ github.actor }}" --password-stdin
|
|
|
|
- name: Retag platform image
|
|
run: |
|
|
set -eu
|
|
SRC="${IMAGE_NAME}:staging-${{ inputs.sha }}"
|
|
if ! crane digest "$SRC" >/dev/null 2>&1; then
|
|
echo "::error::$SRC not found in registry — double-check the sha."
|
|
exit 1
|
|
fi
|
|
EXPECTED=$(crane digest "$SRC")
|
|
crane tag "$SRC" latest
|
|
ACTUAL=$(crane digest "${IMAGE_NAME}:latest")
|
|
if [ "$ACTUAL" != "$EXPECTED" ]; then
|
|
echo "::error::retag digest mismatch (expected $EXPECTED, got $ACTUAL)"
|
|
exit 1
|
|
fi
|
|
echo "OK ${IMAGE_NAME}:latest → $ACTUAL"
|
|
|
|
- name: Retag tenant image
|
|
run: |
|
|
set -eu
|
|
SRC="${TENANT_IMAGE_NAME}:staging-${{ inputs.sha }}"
|
|
if ! crane digest "$SRC" >/dev/null 2>&1; then
|
|
echo "::error::$SRC not found — tenant image may not have built for this sha."
|
|
exit 1
|
|
fi
|
|
EXPECTED=$(crane digest "$SRC")
|
|
crane tag "$SRC" latest
|
|
ACTUAL=$(crane digest "${TENANT_IMAGE_NAME}:latest")
|
|
if [ "$ACTUAL" != "$EXPECTED" ]; then
|
|
echo "::error::tenant retag digest mismatch"
|
|
exit 1
|
|
fi
|
|
echo "OK ${TENANT_IMAGE_NAME}:latest → $ACTUAL"
|
|
|
|
- name: Summary
|
|
run: |
|
|
{
|
|
echo "## :latest promoted to staging-${{ inputs.sha }}"
|
|
echo
|
|
echo "Both platform + tenant images retagged. Prod tenants"
|
|
echo "will auto-pull within their 5-min update cycle."
|
|
} >> "$GITHUB_STEP_SUMMARY"
|