Activepieces
OSS
activepieces
Sign in / Sign up
Open main menu
activepieces
GitHub
Overview
Runs
Analytics
Loading workspace stats
Loading workspace insights...
Statistics interval
7 days
30 days
Latest CI Pipeline Executions
Status
Fix filter
Filter
Fuzzy
Filter range
Sort by
Sort by
Start time
Sort ascending
Sort descending
Failed
25
75147eb5 gitlab-ci: individual job fixes.
5 days ago
by John Avery
J
Failed
25
bc18ccc9 fix(01-04): Increase type-check timeout and parallelism Problem: type-check:all job timing out after 10 minutes Root cause: - First pipeline run has no .nx/cache - Type checking all projects from scratch takes >10 minutes - Low parallelism (3 projects) slows down execution - Default 10m timeout too short for cold runs Solution: 1. Increased timeout: 10m → 30m - First run (no cache): ~15-20 minutes expected - Subsequent runs (with .nx/cache): ~2-5 minutes - 30m provides buffer for cold builds 2. Increased parallelism: --parallel=3 → --parallel=5 - More projects checked simultaneously - Better utilization of CI runner resources - Faster completion time Impact: - ✅ First pipeline run can complete without timeout - ✅ Nx cache persists for subsequent runs (much faster) - ✅ Better parallelism improves overall speed Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
5 days ago
by John Avery
J
Succeeded
25
94b5c427 fix(01-04): Add pnpm install to child jobs and skip ArgoCD in CI Problem: type-check:all failed with "Command nx not found" Root cause: - Base image installs to /app/.pnpm-store with --ignore-scripts - Child jobs checkout code to different directory - node_modules symlinks not created in working directory - nx binary not available for pnpm exec Solution: 1. Add "pnpm install --frozen-lockfile" to .pnpm_node_template - Reuses .pnpm-store from base image (fast, ~10s) - Creates symlinks in correct working directory - Runs postinstall scripts (needed for nx) 2. Add SKIP_ARGOCD_INSTALL=true environment variable - Prevents ArgoCD postinstall script from failing - Script checks env var and exits early if set 3. Update install-argocd-cli.js to respect SKIP_ARGOCD_INSTALL - Exits early if env var is true - Prevents sudo errors in CI environment Impact: - Child jobs can now find nx and other binaries - pnpm install is fast because packages already in store - ArgoCD CLI still installs locally (env var not set) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
5 days ago
by John Avery
J
Previous page
Previous
Next
Next page