Skip to content
StepArgumentsStatus
Start of Pipeline - (4 min 34 sec in block)
echo - (2 ms in self)[WARNING] label option is deprecated. To use a static pod template, use the 'inheritFrom' option.
podTemplate - (4 min 32 sec in block)
podTemplate block - (4 min 31 sec in block)
node - (4 min 30 sec in block)hugo-agent
node block - (4 min 9 sec in block)
org.jenkinsci.plugins.workflow.steps.PushdStep - (41 sec in block)
org.jenkinsci.plugins.workflow.steps.PushdStep block - (40 sec in block)
stage - (38 sec in block)Declarative: Checkout SCM
stage block (Declarative: Checkout SCM) - (38 sec in block)
checkout - (37 sec in self)
withEnv - (3 min 26 sec in block)GIT_BRANCH, GIT_COMMIT, GIT_PREVIOUS_COMMIT, GIT_URL
withEnv block - (3 min 25 sec in block)
withEnv - (3 min 21 sec in block)PROJECT_BOT_NAME, BRANCH_NAME, PROJECT_NAME
withEnv block - (3 min 19 sec in block)
stage - (18 sec in block)Checkout www repo
stage block (Checkout www repo) - (16 sec in block)
sh - (2.7 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 - (5.3 sec in block)
org.jenkinsci.plugins.workflow.steps.PushdStep block - (4.8 sec in block)
git - (4.1 sec in self)
stage - (2 min 39 sec in block)Build website with Hugo
stage block (Build website with Hugo) - (2 min 38 sec in block)
container - (2 min 31 sec in block)hugo
container block - (2 min 31 sec in block)
org.jenkinsci.plugins.workflow.steps.PushdStep - (2 min 30 sec in block)
org.jenkinsci.plugins.workflow.steps.PushdStep block - (2 min 30 sec in block)
sh - (2.7 sec in self)git submodule add https://github.com/google/docsy.git themes/docsy
sh - (1 min 48 sec in self)git submodule update --init --recursive
sh - (38 sec in self)hugo -b https://www.eclipse.org/sw360/
stage - (17 sec in block)Push www
stage block (Push www) - (16 sec in block)
sh - (0.62 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 - (9.3 sec in block)
org.jenkinsci.plugins.workflow.steps.PushdStep block - (9.1 sec in block)
sshagent - (8 sec in block)
sshagent block - (7.2 sec in block)
sh - (6.5 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-4" 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"