Currently, .github/workflows/build-release.yml takes a tag number:
|
cpython_release: |
|
type: string |
|
description: "CPython release number (ie '3.11.5', note without the 'v' prefix)" |
Which can be used as the input when triggering a run:
https://github.com/python/release-tools/actions/workflows/build-release.yml
It would be useful if we could also give a branch name, so for example we can trigger a run against upstream main or 3.14, so we can verify the latest state will build.
This will also help with PRs like #284 where we specify which arguments to run against the Android test runner, and the test runner is in the upstream repo.
We'll need to take care of v prefix that is currently prepended in some places.
Currently,
.github/workflows/build-release.ymltakes a tag number:release-tools/.github/workflows/build-release.yml
Lines 35 to 37 in 9721c24
Which can be used as the input when triggering a run:
https://github.com/python/release-tools/actions/workflows/build-release.yml
It would be useful if we could also give a branch name, so for example we can trigger a run against upstream
mainor3.14, so we can verify the latest state will build.This will also help with PRs like #284 where we specify which arguments to run against the Android test runner, and the test runner is in the upstream repo.
We'll need to take care of
vprefix that is currently prepended in some places.