Commit d44d777b authored by Raphael Defosseux's avatar Raphael Defosseux

fix(ci): fix email addresses at start of pipeline

Signed-off-by: default avatarRaphael Defosseux <raphael.defosseux@eurecom.fr>
parent 31d384ee
...@@ -103,6 +103,8 @@ pipeline { ...@@ -103,6 +103,8 @@ pipeline {
echo "Git URL is ${GIT_URL}" echo "Git URL is ${GIT_URL}"
if ("MERGE".equals(env.gitlabActionType)) { if ("MERGE".equals(env.gitlabActionType)) {
// Filling the committer email in case of error
gitCommitAuthorEmailAddr = env.gitlabUserEmail
try { try {
myShCmd('docker image inspect --format="Size = {{.Size}} bytes" vpp-upf-base:' + VPP_UPF_U18_BASE_IMAGE_TAG, rem_u18_host_flag, rem_u18_host_user, rem_u18_host) myShCmd('docker image inspect --format="Size = {{.Size}} bytes" vpp-upf-base:' + VPP_UPF_U18_BASE_IMAGE_TAG, rem_u18_host_flag, rem_u18_host_user, rem_u18_host)
} catch (Exception e) { } catch (Exception e) {
...@@ -119,8 +121,9 @@ pipeline { ...@@ -119,8 +121,9 @@ pipeline {
error "Stopping pipeline!" error "Stopping pipeline!"
} }
} }
gitCommitAuthorEmailAddr = env.gitlabUserEmail
} else { } else {
// Filling the committer email in case of error
gitCommitAuthorEmailAddr = sh returnStdout: true, script: 'git log -n1 --pretty=format:%ae ${GIT_COMMIT}'
gitCommitAuthorEmailAddr = gitCommitAuthorEmailAddr.trim() gitCommitAuthorEmailAddr = gitCommitAuthorEmailAddr.trim()
} }
if (params.DockerHubCredentials == null) { if (params.DockerHubCredentials == null) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment