This is an automated email from the ASF dual-hosted git repository.

rantunes pushed a commit to branch kie-issues_821
in repository 
https://gitbox.apache.org/repos/asf/incubator-kie-kogito-serverless-operator.git


The following commit(s) were added to refs/heads/kie-issues_821 by this push:
     new a252dec4 Fix helper calls
a252dec4 is described below

commit a252dec4f26aece217b6a7d9912b700e61b0ada3
Author: Rodrigo Antunes <[email protected]>
AuthorDate: Fri Jan 26 09:47:53 2024 -0300

    Fix helper calls
---
 .ci/jenkins/Jenkinsfile.weekly.deploy | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.ci/jenkins/Jenkinsfile.weekly.deploy 
b/.ci/jenkins/Jenkinsfile.weekly.deploy
index 1e22e367..7caa4401 100644
--- a/.ci/jenkins/Jenkinsfile.weekly.deploy
+++ b/.ci/jenkins/Jenkinsfile.weekly.deploy
@@ -184,12 +184,12 @@ void sendNotification() {
 
 void checkoutRepo() {
     deleteDir()
-    checkout(githubscm.resolveRepository(util.getRepoName(), 
util.getGitAuthor(), util.getBuildBranch(), false, util.getGitAuthorCredsId()))
+    checkout(githubscm.resolveRepository(helper.getRepoName(), 
helper.getGitAuthor(), helper.getBuildBranch(), false, 
helper.getGitAuthorCredsId()))
     // need to manually checkout branch since on a detached branch after 
checkout command
-    sh "git checkout ${getBuildBranch()}"
+    sh "git checkout ${helper.getBuildBranch()}"
     checkoutDatetime = getCheckoutDatetime()
     if (checkoutDatetime) {
-        sh "git checkout `git rev-list -n 1 --before=\"${checkoutDatetime}\" 
${getBuildBranch()}`"
+        sh "git checkout `git rev-list -n 1 --before=\"${checkoutDatetime}\" 
${helper.getBuildBranch()}`"
     }
 }
 


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to