Skip to content

Commit

Permalink
Merge pull request #4180 from ashwindasr/fix-poll-payload
Browse files Browse the repository at this point in the history
[poll-payload] different working dir to handle concurrent runs
  • Loading branch information
openshift-merge-bot[bot] authored Jun 13, 2024
2 parents e3bb9ff + 4832ca0 commit 0bdab4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scheduled-jobs/build/poll-payload/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def startBuildMicroshiftJob(String releaseStream, Map latestRelease, Map previou
def x86_64_nightly = latestRelease.name
// Get all nightlies matching the x86_64 nightly
echo "Get nightlies matching the x86_64 nightly ${x86_64_nightly}..."
def cmd = "doozer --assembly=stream --arches x86_64,aarch64 --group openshift-${buildVersion} --working-dir ./doozer-working get-nightlies --matching ${x86_64_nightly}"
def cmd = "doozer --assembly=stream --arches x86_64,aarch64 --group openshift-${buildVersion} get-nightlies --matching ${x86_64_nightly}"
def res = commonlib.shell(script: cmd, returnAll: true)
if (res.returnStatus != 0) {
if (res.combined.contains("Found no nightlies") || res.combined.contains("No sets of equivalent nightlies")) {
Expand Down

0 comments on commit 0bdab4b

Please sign in to comment.