From 502a8e01d729687adca84e2484c1396868a9bb88 Mon Sep 17 00:00:00 2001 From: tegwick Date: Sun, 13 Sep 2026 12:22:17 +0200 Subject: [PATCH] Run journey CI in a pinned Python environment Assistant: codex Assistant-Model: gpt-6-astra Assistant-Session: 01a092fe-13b1-7f12-ac74-7d258af4d79c --- .forgejo/workflows/journeys.yaml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.forgejo/workflows/journeys.yaml b/.forgejo/workflows/journeys.yaml index 204ce5d..0367f9b 100644 --- a/.forgejo/workflows/journeys.yaml +++ b/.forgejo/workflows/journeys.yaml @@ -6,15 +6,18 @@ on: workflow_dispatch: jobs: journeys: - runs-on: self-hosted + runs-on: ubuntu-latest + container: + image: python:3.12-slim@sha256:d764629ce0ddd8c71fd371e9901efb324a95789d2315a47db7e4d27e78f1b0e9 steps: - name: Test the exact commit run: | set -eu mkdir -p journey-source - curl -fsSL "https://forgejo.coulomb.social/${GITHUB_REPOSITORY}/archive/${GITHUB_SHA}.tar.gz" -o journey-source.tar.gz + python -c 'import os, urllib.request; urllib.request.urlretrieve("https://forgejo.coulomb.social/" + os.environ["GITHUB_REPOSITORY"] + "/archive/" + os.environ["GITHUB_SHA"] + ".tar.gz", "journey-source.tar.gz")' tar xzf journey-source.tar.gz -C journey-source --strip-components=1 cd journey-source - PYTHONDONTWRITEBYTECODE=1 make test - PYTHONDONTWRITEBYTECODE=1 make test-journeys JOURNEY_ARGS="--report journey-report.json" + PYTHONDONTWRITEBYTECODE=1 PYTHONPATH=src python -m unittest discover -s tests + PYTHONDONTWRITEBYTECODE=1 PYTHONPATH=src python scripts/check_layer_conformance.py --report + PYTHONDONTWRITEBYTECODE=1 python scripts/run_journey_suites.py --report journey-report.json cat journey-report.json