ci: move all jobs from Blacksmith to GitHub-hosted ubuntu-latest#21
Merged
Conversation
Blacksmith runners have been unreliable, so switch every workflow job (CI test, E2E matrix, Docsite seo) back to the standard `ubuntu-latest` runners. The Playwright container kept from #20 still avoids the browser download entirely, so browser jobs stay hang-proof regardless of runner. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
The Lighthouse SEO audit is too slow (≈23 pages) and overran even the raised step cap on ubuntu-latest. Switch the workflow to workflow_dispatch only so it no longer blocks PRs; it can be run manually from the Actions tab and re-enabled once the audit is optimized. Runner/timeout kept at ubuntu-latest / 15m·12m for those manual runs. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
f90cb6c to
efbf952
Compare
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.
Why
The Blacksmith
blacksmith-4vcpu-ubuntu-2404runners have been unreliable (the original Playwright browser-download hang surfaced there, and they've kept causing trouble). Move every workflow job back to the standard GitHub-hostedubuntu-latestrunners.What
runs-on: blacksmith-4vcpu-ubuntu-2404→runs-on: ubuntu-latestinci.yml(test) ande2e.yml(testmatrix).playwright installdownload and stay hang-proof.docsite.yml: the Lighthouse SEO audit (~23 pages) is too slow on the standard runner and overran the step cap. Switched the workflow toworkflow_dispatch-only so it no longer blocks PRs — it can be run manually and re-enabled once the audit is optimized.🤖 Generated with Claude Code