Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
Signed-off-by: Sayali Gaikawad <[email protected]>
  • Loading branch information
gaiksaya committed Nov 9, 2024
1 parent 4282e6b commit 6d47456
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions jenkins/opensearch/test-dist.jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,10 @@ pipeline {
agent { label AGENT_LINUX_X64 }
steps {
script {
waitUntil {
return (env.TAR_X64_SUCCESS == 'true' && env.TAR_ARM64_SUCCESS == 'true')
timeout(time: 5, unit: 'MINUTES') {
waitUntil {
return (env.TAR_X64_SUCCESS == 'true' && env.TAR_ARM64_SUCCESS == 'true')
}
}
echo 'Docker build done'
}
Expand Down

0 comments on commit 6d47456

Please sign in to comment.