[Infra] Bump llm_translation_testing resource class to xlarge#25887
[Infra] Bump llm_translation_testing resource class to xlarge#25887shin-berri merged 1 commit intolitellm_internal_stagingfrom
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Greptile SummaryThis PR bumps the Confidence Score: 5/5This PR is safe to merge — it is a trivial single-line CI resource class bump with no code or logic changes. The change is confined to one line in the CI config, upgrading compute resources for a test job. There are no logic changes, no security implications, and no custom rules are violated. The existing install script already follows the supply-chain safety rules (pinned version, SHA-256 verification). No files require special attention.
|
| Filename | Overview |
|---|---|
| .circleci/config.yml | Single-line change upgrading llm_translation_testing job resource class from large to xlarge; no logic changes. |
Flowchart
%%{init: {'theme': 'neutral'}}%%
flowchart TD
A[llm_translation_testing job] --> B{Resource Class}
B -->|Before| C["large\n4 vCPU / 8 GB RAM"]
B -->|After| D["xlarge\n8 vCPU / 16 GB RAM"]
D --> E[checkout + install deps]
E --> F[Run pytest on tests/llm_translation/]
F --> G[Store test results]
Reviews (1): Last reviewed commit: "[Infra] Bump llm_translation_testing res..." | Re-trigger Greptile
Summary
Bumps the CircleCI
llm_translation_testingjob'sresource_classfromlarge(4 vCPUs / 8GB RAM) toxlarge(8 vCPUs / 16GB RAM) to give the job more compute.Changes
.circleci/config.yml:resource_class: large→resource_class: xlargefor thellm_translation_testingjob.Testing
CI will exercise the new resource class when this PR runs.
Type
🚄 Infrastructure