Skip to content
StepArgumentsStatus
Start of Pipeline - (1 min 45 sec in block)
podTemplate - (1 min 43 sec in block)
podTemplate block - (1 min 42 sec in block)
node - (1 min 41 sec in block)californium-website_17-84f9s
node block - (58 sec in block)
dir - (19 sec in block)californium
dir block - (18 sec in block)
stage - (17 sec in block)Declarative: Checkout SCM
stage block (Declarative: Checkout SCM) - (17 sec in block)
checkout - (16 sec in self)
withEnv - (37 sec in block)GIT_BRANCH, GIT_COMMIT, GIT_URL
withEnv block - (37 sec in block)
withEnv - (33 sec in block)PROJECT_BOT_NAME, WEBSITE_REPO_BRANCH_NAME, WEBSITE_SRC_DIR, PROJECT_NAME, WEBSITE_REPO_DIR
withEnv block - (32 sec in block)
timeout - (31 sec in block)
timeout block - (30 sec in block)
stage - (9.2 sec in block)Clone Californium web site repository
stage block (Clone Californium web site repository) - (8.2 sec in block)
sshagent - (2.2 sec in block)
sshagent block - (1.8 sec in block)
sh - (1.1 sec in self)#!/bin/bash git clone ssh://git@github.com/eclipse-californium/californium-website.git "${WEBSITE_REPO_DIR}" echo "scrubbing web site directory..." (cd "${WEBSITE_REPO_DIR}"; git rm -r --quiet -- ':!README.md'; cp "${WORKSPACE}/californium/LICENSE" .)
stage - (10 sec in block)Build web site (main) using Hugo
stage block (Build web site (main) using Hugo) - (9.5 sec in block)
container - (3.6 sec in block)hugo
container block - (3.3 sec in block)
dir - (2.2 sec in block)/home/jenkins/agent/workspace/californium-website/californium/site
dir block - (2 sec in block)
sh - (1.3 sec in self)#!/bin/bash hugo -v -d "${WEBSITE_REPO_DIR}" -b "https://eclipse.dev/${PROJECT_NAME}/"
stage - (8.3 sec in block)Push to web site main branch
stage block (Push to web site main branch) - (8 sec in block)
sshagent - (2.1 sec in block)
sshagent block - (1.7 sec in block)
sh - (1.1 sec in self)#!/bin/bash cd "${WEBSITE_REPO_DIR}" git add -A if git diff --cached --quiet; then echo "no changes have been detected since last build, nothing to publish" else echo "changes have been detected, publishing to Californium website repo on GitHub" git config user.email "${PROJECT_NAME}-bot@eclipse.org" git config user.name "${PROJECT_BOT_NAME}" git commit -m "Website build ${JOB_NAME}-${BUILD_NUMBER}" git push origin "HEAD:${WEBSITE_REPO_BRANCH_NAME}" fi