Skip to content

Commit f412e64

Browse files
dustymabejlebon
authored andcommitted
jobs/bump-lockfile: limit to single run at a time
Right now when the bump-lockfiles job runs it kicks off two runs of bump-lockfile (one for each stream) at the exact same time. This might be what is causing our timeouts to be getting hit lately (primarily because the ppc64le runs are taking longer) [1]. Let's limit the bump-lockfile job to a singular run at any given time. [1] coreos/fedora-coreos-tracker#1579
1 parent eb70bf7 commit f412e64

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jobs/bump-lockfile.Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def getLockfileInfo(lockfile) {
6262
def cosa_memory_request_mb = 10.5 * 1024 as Integer
6363
def ncpus = ((cosa_memory_request_mb - 512) / 1536) as Integer
6464

65-
lock(resource: "bump-${params.STREAM}") {
65+
lock(resource: "bump-lockfile") {
6666
cosaPod(image: cosa_img,
6767
cpu: "${ncpus}", memory: "${cosa_memory_request_mb}Mi",
6868
serviceAccount: "jenkins") {

0 commit comments

Comments
 (0)