Skip to content

Commit 1082b39

Browse files
committed
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 <[email protected]>
1 parent ad7c79c commit 1082b39

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stembuild/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)