Skip to content

Commit 4da7e0e

Browse files
committed
ci: Extend retry duration to 10s
Github actions runners are slow and cue cmd doesn't have proper job management capabilities.
1 parent bb6a0f1 commit 4da7e0e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

make_tool.cue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ task: test: {
8181

8282
testfiles: file.Glob & {glob: "\(vars.testdir)/tests/*.hurl"}
8383
mkdir: file.Mkdir & {path: reportpath}
84-
ready: exec.Run & {cmd: "curl -X GET --retry-all-errors --retry 5 --retry-connrefused --retry-delay 1 http://localhost:\(port)/ready --silent", stdout: "OK"}
84+
ready: exec.Run & {cmd: "curl -X GET --retry-all-errors --retry 10 --retry-connrefused --retry-delay 1 http://localhost:\(port)/ready --silent", stdout: "OK"}
8585
hurl: exec.Run & {
8686
cmd: ["bash", "-xc", "hurl --continue-on-error --no-output --test --report-html '\(reportpath)' --connect-to localhost:8080:localhost:\(port) '\(strings.Join(testfiles.files, "' '"))' &>'\(reportpath)/hurl.log'"]
8787
dir: vars.testdir

0 commit comments

Comments
 (0)