ci: fix Forgejo Python workflows for node:20-bookworm runner
Some checks failed
CI Smoke / host-smoke (push) Successful in 0s
CI Smoke / container-smoke (push) Successful in 2s
ci / test (push) Failing after 40s

ubuntu-latest maps to docker://node:20-bookworm with python3 but no pip.
Install python3-pip via apt (reuse-surface pattern), use short-SHA archive
checkout, and --break-system-packages for PEP 668. Unblocks CUST-WP-0059 T05.
This commit is contained in:
tegwick 2026-07-18 18:05:46 +02:00
parent 776b7f8cc4
commit f283b4a1ee
2 changed files with 26 additions and 6 deletions

View file

@ -1,3 +1,8 @@
# Forgejo Actions CI for kaizen-agentic.
# Runner substrate: ubuntu-latest maps to docker://node:20-bookworm (no pip).
# Install python3 + pip via apt; use archive checkout (no actions/checkout).
# Pattern from reuse-surface/.forgejo/workflows/ci.yml and
# railiance-enablement/docs/forgejo-actions-workflow-templates.md.
name: ci
on:
@ -17,15 +22,23 @@ jobs:
run: |
set -eu
mkdir -p repo
# Prefer short SHA; full SHA archive URLs can hang on this substrate.
SHORT="${REF:0:7}"
wget -qO /tmp/repo.tar.gz \
"https://forgejo.coulomb.social/${GITHUB_REPOSITORY}/archive/${REF}.tar.gz"
"https://forgejo.coulomb.social/${GITHUB_REPOSITORY}/archive/${SHORT}.tar.gz"
tar xzf /tmp/repo.tar.gz -C repo --strip-components=1
- name: Install Python tooling
run: |
set -eu
apt-get update -qq
apt-get install -y -qq python3 python3-pip python3-venv >/dev/null
python3 -m pip install --break-system-packages --upgrade pip
- name: Install package and dev tools
working-directory: repo
run: |
python3 -m pip install --upgrade pip
python3 -m pip install -e ".[dev]"
python3 -m pip install --break-system-packages -e ".[dev]"
- name: Format check (black)
working-directory: repo

View file

@ -1,3 +1,6 @@
# Publish kaizen-agentic to Forgejo org PyPI on version tags.
# Runner substrate: ubuntu-latest → node:20-bookworm — install pip via apt.
# Org secrets required: FORGEJO_PYPI_USER, FORGEJO_PYPI_TOKEN.
name: Publish Python package
on:
@ -16,13 +19,17 @@ jobs:
run: |
set -eu
mkdir -p buildctx
SHORT="${REF:0:7}"
wget -qO /tmp/repo.tar.gz \
"https://forgejo.coulomb.social/${GITHUB_REPOSITORY}/archive/${REF}.tar.gz"
"https://forgejo.coulomb.social/${GITHUB_REPOSITORY}/archive/${SHORT}.tar.gz"
tar xzf /tmp/repo.tar.gz -C buildctx --strip-components=1
- name: Set up Python
- name: Install Python tooling
run: |
python3 -m pip install --upgrade pip build twine
set -eu
apt-get update -qq
apt-get install -y -qq python3 python3-pip python3-venv >/dev/null
python3 -m pip install --break-system-packages --upgrade pip build twine
- name: Build and validate distributions
working-directory: buildctx