Reduce GitHub Actions macOS worker demand - #9280
Open
alexreinking wants to merge 4 commits into
Open
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #9280 +/- ##
==========================================
- Coverage 70.26% 70.17% -0.10%
==========================================
Files 257 257
Lines 79106 79136 +30
Branches 18954 18979 +25
==========================================
- Hits 55583 55532 -51
+ Misses 17885 17848 -37
- Partials 5638 5756 +118 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
alexreinking
force-pushed
the
alexreinking/reduce-macos-ci
branch
from
August 5, 2026 17:57
6a18563 to
9debc72
Compare
Member
|
I'm inclined to fix linter errors in the tutorial's simd code if possible. How should I repro locally? |
Member
Author
I used Docker. Just ask Claude to run |
Member
|
Assuming I repro and fix, should I push to this branch or open a separate PR? |
Member
Author
Push here, might as well |
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
We can only run five concurrent macOS jobs at a time. As such, anything that isn't macOS-specific needs to move off them in order to keep those resources free for work that is.
testing-make.yml: drop unuseduv/Python setup (the Makefile build has no Python dependency), and restrict the macOS matrix leg tomake test_apps(which still builds Halide via thedistribdependency), leaving the full test suite on Linux. Reduced from ~40m to ~10m.clang-tidy.ymloffmacos-latestontoubuntu-24.04, building wabt from source with-DCMAKE_POSITION_INDEPENDENT_CODE=ON -DUSE_INTERNAL_SHA256=ONto avoid both the missing-PIC and OpenSSL-config gaps in Ubuntu's wabt package. Increased from ~43m to ~70m, but on Linux.Test plan
run-clang-tidy.shend-to-end in a clean Ubuntu 24.04 x86_64 Docker container (matching theubuntu-24.04GitHub runner), using the exact package/build steps now inclang-tidy.yml: full 392/392 file pass,Success!.🤖 Generated with Claude Code