Conversation
ScSteffen
approved these changes
Feb 18, 2026
Collaborator
ScSteffen
left a comment
There was a problem hiding this comment.
lgtm. Also wasn't aware of the default payload in the CI runs. Good learning for other projects too
7 tasks
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
Made some improvements to the docker CI to work around some space limitations. Biggest difference is adding an action which cleans up a lot of disk space before we ever run anything. This was news to me but apparently the runners come loaded with a lot of things rarely used like android sdk, haskell, and docker images which use up a significant amount of room. We're removing most of that to reclaim space.
Motivation & Context
Fixes #75
Approach
Reclaimed space by removing some preloaded stuff from the runners, building cpu-only torch (no point in building gpu since the runner is cpu and we aren't publishing), changed dockerfile a bit to squash some layering and save more space.
Testing Plan
python -m app --helpDocumentation
Checklist
ruff format --checkruff check .mypy srcpytest -qRisk & Rollback Plan
Probably not needed in the beginning
Notes for Reviewers