Skip to content
StepArgumentsStatus
Start of Pipeline - (2 min 41 sec in block)
echo - (5 ms in self)[WARNING] label option is deprecated. To use a static pod template, use the 'inheritFrom' option.
podTemplate - (2 min 40 sec in block)
podTemplate block - (2 min 40 sec in block)
node - (2 min 40 sec in block)hugo-agent
node block - (1 min 27 sec in block)
dir - (1 min 2 sec in block)hugo
dir block - (1 min 2 sec in block)
stage - (1 min 1 sec in block)Declarative: Checkout SCM
stage block (Declarative: Checkout SCM) - (1 min 1 sec in block)
checkout - (1 min 1 sec in self)
withEnv - (25 sec in block)GIT_BRANCH, GIT_COMMIT, GIT_PREVIOUS_COMMIT, GIT_PREVIOUS_SUCCESSFUL_COMMIT, GIT_URL
withEnv block - (25 sec in block)
withEnv - (25 sec in block)GROUP_NAME, PROJECT_BOT_NAME, SOURCE_PATH, TARGET_ADDRESS, TARGET_REPO, PROJECT_NAME
withEnv block - (25 sec in block)
stage - (11 sec in block)Checkout www repo
stage block (Checkout www repo) - (11 sec in block)
dir - (10 sec in block)www
dir block - (10 sec in block)
sshagent - (10 sec in block)
sshagent block - (8.2 sec in block)
sh - (8.2 sec in self) git clone ${TARGET_REPO} . git checkout ${BRANCH_NAME}
stage - (1.8 sec in block)Build website (master) with Hugo
stage block (Build website (master) with Hugo) - (1.6 sec in block)
container - (1.5 sec in block)hugo
container block - (1.3 sec in block)
dir - (1.2 sec in block)hugo/websites/www.eclipse.org-automotive-hugo/site
dir block - (1.2 sec in block)
sh - (1.2 sec in self)hugo -b ${TARGET_ADDRESS}
stage - (0.28 sec in block)Build website (staging) with Hugo
stage block (Build website (staging) with Hugo) - (0.14 sec in block)
stage - (12 sec in block)Push to $env.BRANCH_NAME branch
stage block (Push to $env.BRANCH_NAME branch) - (12 sec in block)
sh - (0.64 sec in self)rm -rf www/* && cp -Rvf hugo/${SOURCE_PATH}/public/* www/
dir - (11 sec in block)www
dir block - (11 sec in block)
sshagent - (11 sec in block)
sshagent block - (8.9 sec in block)
sh - (8.9 sec in self) git add -A if ! git diff --cached --exit-code; then echo "Changes have been detected, publishing to repo '${GROUP_NAME}/${PROJECT_NAME}'" git config --global user.email "${GROUP_NAME}-bot@eclipse.org" git config --global user.name "${PROJECT_BOT_NAME}" git commit -m "Website build ${JOB_NAME}-${BUILD_NUMBER}" git log --graph --abbrev-commit --date=relative -n 5 git push origin HEAD:${BRANCH_NAME} else echo "No change have been detected since last build, nothing to publish" fi