Refactor into per-OS jobs and more granular steps#18
Merged
savannahostrowski merged 3 commits intosavannahostrowski:refactor-tailcall-ymlfrom Feb 8, 2026
Conversation
425a73b
into
savannahostrowski:refactor-tailcall-yml
37 checks passed
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.
Last suggestion for python#144553.
Instead of a single job, with three steps (Windows, macOS, Linux) that each has a guard for
runner.os, this PR does a job per OS instead.That way we don't have skipped jobs when looking at the logs.
There is a bit of extra duplication, but it's only
actions/checkoutandactions/setup-pythonwhich are straighforward.And now we have one job per OS, instead of a single step to do all the CI work, we can split it up into install, build and test steps.
This chunks the output, so we can more easily see where failures happen. It also shows how long each step takes, which can be useful in case something starts taking longer than it should.
Before: https://github.com/python/cpython/actions/runs/21787845022?pr=144553
After: https://github.com/hugovk/cpython/actions/runs/21800817629