More yarn berry fixes.
Some checks failed
Tests / Build and Push CICD Image (push) Successful in 57m57s
Tests / Trailing Whitespace Check (push) Failing after 5m40s
Tests / YAML Syntax Check (push) Failing after 57s
Tests / TOML Syntax Check (push) Successful in 53s
Tests / Mixed Line Ending Check (push) Successful in 52s
Tests / TOML Formatting Check (push) Failing after 57s
Tests / Ruff Linting (push) Failing after 56s
Tests / Ruff Format Check (push) Successful in 57s
Tests / Pyright Type Check (push) Failing after 1m5s
Tests / Darglint Docstring Check (push) Successful in 55s
Tests / No Docstring Types Check (push) Successful in 54s
Tests / End of File Check (push) Successful in 8m39s
Tests / ESLint Check (push) Successful in 1m9s
Tests / Prettier Format Check (push) Successful in 1m10s
Tests / TypeScript Type Check (push) Successful in 1m11s
Tests / Backend Tests (push) Failing after 1m2s
Tests / TSDoc Lint Check (push) Successful in 1m29s
Tests / Backend Doctests (push) Successful in 1m13s
Tests / Frontend Tests (push) Failing after 1m30s
Tests / Integration Tests (push) Has been skipped
Tests / End-to-End Tests (push) Has been skipped

Signed-off-by: Cliff Hill <xlorep@darkhelm.org>
This commit is contained in:
2025-10-28 17:46:41 -04:00
parent e6657c09b3
commit de199c5453

View File

@@ -157,14 +157,13 @@ RUN export NODE_OPTIONS="--max-old-space-size=2048" && \
for i in 1 2 3; do \
echo "Attempt $i: Installing frontend dependencies..." && \
yarn install --immutable \
--cache-folder /tmp/yarn-cache \
&& break || \
(echo "Attempt $i failed, cleaning up and retrying..." && \
rm -rf node_modules .yarn/cache .yarn/install-state.gz /tmp/yarn-cache && \
rm -rf node_modules .yarn/cache .yarn/install-state.gz && \
yarn cache clean --all 2>/dev/null || true && \
sleep 15); \
done && \
rm -rf /tmp/yarn-cache .yarn/cache && \
rm -rf .yarn/cache && \
swapoff /tmp/swapfile 2>/dev/null || true && \
rm -f /tmp/swapfile