We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add an new option in the infrabox job options list to rerun this job if it failed.
Here is an example infrabox.json file,
{ "version": 1, "jobs": [{ "type": "docker", "name": "retest", "resources": { "limits": { "cpu": 1, "memory": 1024 } }, "build_only": false, "docker_file": "Dockerfile", "retry": "1" }] }
when "retry" = 0, infrabox works as before. when "retry" = N, infrabox will rerun the job "retest" N times if the prior execution of this job failed.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Add an new option in the infrabox job options list to rerun this job if it failed.
Here is an example infrabox.json file,
{
"version": 1,
"jobs": [{
"type": "docker",
"name": "retest",
"resources": { "limits": { "cpu": 1, "memory": 1024 } },
"build_only": false,
"docker_file": "Dockerfile",
"retry": "1"
}]
}
when "retry" = 0, infrabox works as before.
when "retry" = N, infrabox will rerun the job "retest" N times if the prior execution of this job failed.
The text was updated successfully, but these errors were encountered: