Even more dependency fixing happening here.
Some checks failed
Tests / Build and Push CICD Base Image (push) Successful in 1m16s
Tests / Build and Push CICD Complete Image (push) Failing after 6m2s
Tests / Trailing Whitespace Check (push) Has been skipped
Tests / YAML Syntax Check (push) Has been skipped
Tests / End of File Check (push) Has been skipped
Tests / End-to-End Tests (push) Has been skipped
Tests / TOML Syntax Check (push) Has been skipped
Tests / Mixed Line Ending Check (push) Has been skipped
Tests / TOML Formatting Check (push) Has been skipped
Tests / Ruff Linting (push) Has been skipped
Tests / Ruff Format Check (push) Has been skipped
Tests / Pyright Type Check (push) Has been skipped
Tests / Darglint Docstring Check (push) Has been skipped
Tests / No Docstring Types Check (push) Has been skipped
Tests / ESLint Check (push) Has been skipped
Tests / Prettier Format Check (push) Has been skipped
Tests / TypeScript Type Check (push) Has been skipped
Tests / TSDoc Lint Check (push) Has been skipped
Tests / Backend Tests (push) Has been skipped
Tests / Frontend Tests (push) Has been skipped
Tests / Backend Doctests (push) Has been skipped
Tests / Integration Tests (push) Has been skipped

Signed-off-by: Cliff Hill <xlorep@darkhelm.org>
This commit is contained in:
2025-11-01 15:24:59 -04:00
parent 9203e4ff73
commit 125e889501

View File

@@ -164,10 +164,10 @@ RUN --mount=type=secret,id=ssh_private_key \
echo "Copying backend files while preserving .venv..."; \
# Copy backend files but skip .venv if it exists
find "$item" -mindepth 1 -maxdepth 1 ! -name ".venv" -exec cp -rf {} /workspace/backend/ \;; \
elif [ "$basename_item" = "frontend" ] && [ -d "/workspace/frontend/node_modules" ]; then \
echo "Copying frontend files while preserving node_modules and .yarn..."; \
# Copy frontend files but skip node_modules and .yarn if they exist
find "$item" -mindepth 1 -maxdepth 1 ! -name "node_modules" ! -name ".yarn" -exec cp -rf {} /workspace/frontend/ \;; \
elif [ "$basename_item" = "frontend" ] && ([ -d "/workspace/frontend/node_modules" ] || [ -f "/workspace/frontend/.pnp.cjs" ]); then \
echo "Copying frontend files while preserving dependencies (.yarn, node_modules, Yarn PnP files)..."; \
# Copy frontend files but skip dependency directories and Yarn PnP state files
find "$item" -mindepth 1 -maxdepth 1 ! -name "node_modules" ! -name ".yarn" ! -name ".pnp.cjs" ! -name ".pnp.loader.mjs" -exec cp -rf {} /workspace/frontend/ \;; \
else \
echo "Copying $basename_item..."; \
cp -rf "$item" /workspace/; \