Skip to content

Commit

Permalink
midpoint-quick-pipeline: added few more verbose blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
virgo47 committed Jun 1, 2022
1 parent 456158e commit d949569
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions tools/jenkins/midpoint-quick-pipeline
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@ podTemplate(
node(POD_LABEL) {
try {
stage("checkout") {
if [ "${verbose}" -ge 1 ]
then
df -h
fi
git branch: params.BRANCH ?: 'master',
url: 'https://github.com/Evolveum/midpoint.git'
}
Expand Down Expand Up @@ -82,6 +86,11 @@ podTemplate(
notifyEveryUnstableBuild: true,
recipients: env.DEFAULT_MAIL_RECIPIENT,
sendToIndividuals: false])

if [ "${verbose}" -ge 1 ]
then
df -h
fi
} catch (Exception e) {
println 'Could not send email: ' + e
}
Expand Down

0 comments on commit d949569

Please sign in to comment.