Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/e2e-golden-path.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ jobs:
DOCKER_HOST: tcp://localhost:2375
DOCKER_TLS_VERIFY: ''
GOLDEN_PATH_SKIP_CLEANUP: '0'
# Skip the ollama auto-download during `nself start` — a full-stack smoke
# must not pull multi-GB AI models in CI (that's what destabilized step 5).
AI_AUTO_INSTALL: 'false'
GOLDEN_PATH_DRY_RUN: ${{ github.event.inputs.dry_run == 'true' && '1' || '0' }}

steps:
Expand Down
3 changes: 3 additions & 0 deletions scripts/golden-path.sh
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,9 @@ RESET_C='\033[0m'

# ── Config ────────────────────────────────────────────────────────────────────
DRY_RUN="${GOLDEN_PATH_DRY_RUN:-0}"
# nself start auto-installs ollama when AI_AUTO_INSTALL is unset/true; the
# golden-path validates the stack lifecycle, not a multi-GB AI model download.
export AI_AUTO_INSTALL="${AI_AUTO_INSTALL:-false}"
SKIP_CLEANUP="${GOLDEN_PATH_SKIP_CLEANUP:-0}"
REPORT_FILE="/tmp/golden-path-report.json"

Expand Down
Loading