| Step | Arguments | Status | ||
|---|---|---|---|---|
| Start of Pipeline - (11 sec in block) | ||||
| node - (10 sec in block) | ||||
| node block - (10 sec in block) | ||||
| stage - (0.98 sec in block) | Declarative: Checkout SCM | |||
| stage block (Declarative: Checkout SCM) - (0.88 sec in block) | ||||
| checkout - (0.84 sec in self) | ||||
| withEnv - (9.5 sec in block) | GIT_BRANCH, GIT_COMMIT, GIT_PREVIOUS_COMMIT, GIT_PREVIOUS_SUCCESSFUL_COMMIT, GIT_URL | |||
| withEnv block - (9.5 sec in block) | ||||
| withEnv - (9.4 sec in block) | PAAS_SSH_CRED, PAAS_HOST, DEPLOY_BRANCH | |||
| withEnv block - (9.4 sec in block) | ||||
| stage - (1.3 sec in block) | Checkout | |||
| stage block (Checkout) - (1.3 sec in block) | ||||
| checkout - (0.62 sec in self) | ||||
| script - (0.63 sec in block) | ||||
| script block - (0.59 sec in block) | ||||
| sh - (0.28 sec in self) | git rev-parse --short HEAD | |||
| sh - (0.28 sec in self) | git log -1 --pretty=%s | |||
| stage - (0.33 sec in block) | Lint | |||
| stage block (Lint) - (0.29 sec in block) | ||||
| sh - (0.26 sec in self) | set -e for f in bootstrap.sh bin/* infra/*.sh infra/paas-self-deploy infra/paas-ci-ssh; do [ -f "$f" ] && head -1 "$f" | grep -q bash && bash -n "$f" done if command -v shellcheck >/dev/null; then shellcheck -S warning bootstrap.sh bin/paas bin/paas-init infra/*.sh infra/paas-self-deploy infra/paas-ci-ssh else echo "shellcheck not installed on this agent — skipped" fi if command -v node >/dev/null; then for f in panel/*.js panel/lib/*.js panel/bin/*.js; do [ -f "$f" ] && node --check "$f"; done else echo "node not installed on this agent — skipped (checked again on the server)" fi | |||
| stage - (7.6 sec in block) | Deploy | |||
| stage block (Deploy) - (7.5 sec in block) | ||||
| withCredentials - (7.3 sec in block) | ||||
| withCredentials block - (7.3 sec in block) | ||||
| sh - (7.3 sec in self) | #!/bin/bash set -eo pipefail tar --exclude=.git --exclude=.idea --exclude=.claude --exclude=node_modules -czf - . | ssh -i "$SSH_KEY" -o IdentitiesOnly=yes -o StrictHostKeyChecking=accept-new -o BatchMode=yes "$PAAS_HOST" deploy "$COMMIT" "$COMMIT_MSG" | |||
| stage - (68 ms in block) | Declarative: Post Actions | |||
| stage block (Declarative: Post Actions) - (47 ms in block) | ||||
| echo - (14 ms in self) | Platform at 81489bc is live on deploy@192.168.13.10 |