Skip to content
StepArgumentsStatus
Start of Pipeline - (3 min 24 sec in block)
echo - (3 ms in self)[WARNING] label option is deprecated. To use a static pod template, use the 'inheritFrom' option.
podTemplate - (3 min 20 sec in block)
podTemplate block - (3 min 19 sec in block)
node - (3 min 17 sec in block)hugo-agent
node block - (2 min 55 sec in block)
org.jenkinsci.plugins.workflow.steps.PushdStep - (44 sec in block)
org.jenkinsci.plugins.workflow.steps.PushdStep block - (42 sec in block)
stage - (41 sec in block)Declarative: Checkout SCM
stage block (Declarative: Checkout SCM) - (37 sec in block)
checkout - (36 sec in self)
withEnv - (2 min 9 sec in block)GIT_BRANCH, GIT_COMMIT, GIT_PREVIOUS_COMMIT, GIT_PREVIOUS_SUCCESSFUL_COMMIT, GIT_URL
withEnv block - (2 min 9 sec in block)
withEnv - (2 min 5 sec in block)PROJECT_BOT_NAME, BRANCH_NAME, PROJECT_NAME
withEnv block - (2 min 5 sec in block)
stage - (18 sec in block)Checkout www repo
stage block (Checkout www repo) - (16 sec in block)
sh - (3.3 sec in self) if ! grep -q "^git.eclipse.org" ~/.ssh/known_hosts; then mkdir -p ~/.ssh ssh-keyscan -t rsa git.eclipse.org >> ~/.ssh/known_hosts fi
org.jenkinsci.plugins.workflow.steps.PushdStep - (6.7 sec in block)
org.jenkinsci.plugins.workflow.steps.PushdStep block - (6.4 sec in block)
git - (5.7 sec in self)
stage - (58 sec in block)Build website with Hugo
stage block (Build website with Hugo) - (57 sec in block)
container - (42 sec in block)hugo
container block - (41 sec in block)
org.jenkinsci.plugins.workflow.steps.PushdStep - (40 sec in block)
org.jenkinsci.plugins.workflow.steps.PushdStep block - (40 sec in block)
sh - (0.84 sec in self)mkdir -p themes/docsy
sh - (38 sec in self)hugo -b https://www.eclipse.org/sw360/
stage - (44 sec in block)Push www
stage block (Push www) - (44 sec in block)
sh - (0.66 sec in self) echo "copy and update files" rm -rf www/* || ls -alF www/ cp -Rvf hugo/public/* www/
org.jenkinsci.plugins.workflow.steps.PushdStep - (37 sec in block)
org.jenkinsci.plugins.workflow.steps.PushdStep block - (18 sec in block)
sshagent - (15 sec in block)
sshagent block - (6.4 sec in block)
sh - (5.7 sec in self) echo "handling git for branch: master" git config --global user.email "sw360-bot@eclipse.org" git config --global user.name "SW360 Bot" git add -A if ! git diff --cached --exit-code; then echo "Changes have been detected, publishing to repo 'www.eclipse.org/sw360'" git commit -m "Website build sw360.website.staging-5" else echo "No change have been detected since last build, nothing to publish" fi git log --graph --abbrev-commit --date=relative -n 5 git push origin HEAD:master || echo "failed to push to master"