docs: add todo to optimize runner compute efficiency

This commit is contained in:
2026-07-13 00:13:47 +02:00
parent ad6ba2199a
commit 429e3d9785
+4
View File
@@ -25,3 +25,7 @@ In order to get the CI/CD and automation processes running again on GitLab, the
4. **Runner Configuration**: 4. **Runner Configuration**:
- Ensure the GitLab Runners have the necessary capabilities (e.g., Node.js environments) by utilizing standard Docker images in the `.gitlab-ci.yml` (e.g., `image: node:20`). - Ensure the GitLab Runners have the necessary capabilities (e.g., Node.js environments) by utilizing standard Docker images in the `.gitlab-ci.yml` (e.g., `image: node:20`).
5. **Optimize Pipeline Compute Efficiency**:
- Analyze and optimize the pipeline execution to drastically reduce compute time.
- **Context:** The previous runner consumed ~2000 minutes of compute time in just 10 days, which is highly inefficient for a small application. Strategies like reducing cron frequencies, utilizing caching, and conditionally running jobs should be implemented.