ci: remove sandbox docker build from publish and e2e workflows#275
Merged
ci: remove sandbox docker build from publish and e2e workflows#275
Conversation
Sandbox images are maintained in the community repo and not built here. Remove the build-sandbox job and all downstream references from publish.yml, e2e.yml, and docker-build.yml.
The hardcoded /app/.venv/bin/python path was specific to the old repo-built sandbox image. Community sandbox images install Python at standard system paths, so resolve via PATH instead. Update e2e policy tests and docs to use /usr/bin/python* glob for binary matching.
|
The community base sandbox image installs Python via uv at /sandbox/.uv/python/**/python*, not /usr/bin/python*. Update policy binary globs in e2e tests and docs to match the actual resolved path.
Update Python version across the project: - mise.toml: 3.12.12 -> 3.13.12 - pyproject.toml: requires-python >= 3.13 - Dockerfiles, CI workflows, examples, and docs - Regenerate uv.lock for Python 3.13 Add Authority Key Identifier extension to L7 TLS leaf certificates to satisfy Python 3.13's stricter ssl module certificate validation.
The published wheel must support Python >=3.12 even though the dev toolchain and sandbox runtime now use 3.13. Revert wheel build Dockerfiles to Python 3.12, restore requires-python >= 3.12 in pyproject.toml, and regenerate uv.lock accordingly.
The --bootstrap flag has hide = true in the CLI definition (it is the default behaviour), so it correctly does not appear in --help output. Remove it from the expected flags list in the smoke test.
drew
added a commit
that referenced
this pull request
Mar 16, 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.
Summary
build-sandboxjob frompublish.ymlande2e.ymlworkflowsbuild-sandboxfromneedsarrays in downstream jobs (tag-ghcr-latest,build-python-wheels,e2e)sandboxfrom the GHCR latest-tagging loop inpublish.ymldocker-build.ymlcomponent description to reflect onlygatewayandclusterSandbox images are maintained in the community repo and not built from this repository.