Skip to content
StepArgumentsStatus
Start of Pipeline - (1 min 28 sec in block)
podTemplate - (1 min 25 sec in block)
podTemplate block - (1 min 25 sec in block)
node - (1 min 23 sec in block)californium-website-preview_1-5g4g1
node block - (1 min 5 sec in block)
org.jenkinsci.plugins.workflow.steps.PushdStep - (18 sec in block)
org.jenkinsci.plugins.workflow.steps.PushdStep block - (16 sec in block)
stage - (15 sec in block)Declarative: Checkout SCM
stage block (Declarative: Checkout SCM) - (15 sec in block)
checkout - (14 sec in self)
withEnv - (45 sec in block)GIT_BRANCH, GIT_COMMIT, GIT_URL
withEnv block - (45 sec in block)
withEnv - (40 sec in block)PROJECT_BOT_NAME, WEBSITE_REPO_BRANCH_NAME, WEBSITE_SRC_DIR, PROJECT_NAME, WEBSITE_REPO_DIR
withEnv block - (40 sec in block)
timeout - (38 sec in block)
timeout block - (38 sec in block)
stage - (10 sec in block)Clone Californium web site repository
stage block (Clone Californium web site repository) - (9.5 sec in block)
sshagent - (2.8 sec in block)
sshagent block - (2.3 sec in block)
sh - (1.6 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 - (12 sec in block)Build web site (main) using Hugo
stage block (Build web site (main) using Hugo) - (11 sec in block)
container - (4.8 sec in block)hugo
container block - (3.6 sec in block)
org.jenkinsci.plugins.workflow.steps.PushdStep - (2.4 sec in block)
org.jenkinsci.plugins.workflow.steps.PushdStep block - (2.1 sec in block)
sh - (1.4 sec in self)#!/bin/bash hugo -v -d "${WEBSITE_REPO_DIR}" -b "https://www.eclipse.org/${PROJECT_NAME}/"
stage - (9.7 sec in block)Push to web site main branch
stage block (Push to web site main branch) - (9.4 sec in block)
sshagent - (2.6 sec in block)
sshagent block - (2.2 sec in block)
sh - (1.5 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