Skip to content
This repository was archived by the owner on May 20, 2025. It is now read-only.

Commit 2854e50

Browse files
ystrosselzoc
authored andcommitted
Double timeout for building stembuild
We are seeing frequent CI failures where running go build on stembuild is exceeding 2 minutes. Signed-off-by: Chris Selzo <chris.selzo@broadcom.com>
1 parent b2df740 commit 2854e50

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/helpers/helpers.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ func BuildStembuild(version string) (string, error) {
182182
NewPrefixedWriter(DebugOutPrefix, GinkgoWriter),
183183
NewPrefixedWriter(DebugErrPrefix, GinkgoWriter))
184184
Expect(err).NotTo(HaveOccurred())
185-
Eventually(session, 120*time.Second).Should(Exit(0))
185+
Eventually(session, 240*time.Second).Should(Exit(0))
186186

187187
files, err := os.ReadDir(filepath.Join(root, "out"))
188188
Expect(err).NotTo(HaveOccurred())

0 commit comments

Comments
 (0)