mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-12 18:20:26 +01:00
90dd3821ed
* feat(ci): run pull request runs only on pull request open #4205 * feat(ci): add retry action for tsan #4205 * feat(ci): use local action for retrying tsan #4205 * fix(ci): use correct version of retry action #4205 * fix: make POSIX event thread safe * feat(ci): add info on retry action to ci.yml header #4205 * feat(ci): add linux mysql test #4205 * feat(ci): remove unused mysql containers from tests#4205 * feat(ci): add linux postgre test #4205 * feat(ci): add linux redis test #4205 * feat(ci): add linux mongodb tests #4205 * feat(ci): add mysql odbc test #4205 * chore(ci): rename tests #4205 * chore(ci): pin postgres and mysql versions #4205 * feat(ci): add odbc postgres tests #4205 * chore(ci): mysql odbc comment #4205 * chore(ci): disable windows 2019 job #4205 * feat(ci): add linux oracle tests #4205 * chore(ci): disable oracle tests #4205 * feat(ci): add sql server tests #4205 * chore(ci): disable postgres tests #4205 * chore(ci): add logging for task test #4205 * feat(ci): add local retry action #4205 * feat(ci): ignore process kill failure in action #4205 * feat(ci): send SIGKILL instead of SIGTERM in action #4205 * chore(ci): add updated action #4205 * chore(ci): reduce tsan timeout #4205 * feat(ci): kill process without children #4205 * feat(ci): send SIGTERM to child in action #4205 * feat(ci): prolong tsan timeout #4205 * chore(ci): add missing newlines #4205 * fix(ci): revert sql server test FreeTDS version #4205 * feat(ci): add retry to all jobs #4205 * feat(ci): setup python for codeQL #4205 * chore(ci): disable throwing on codeql error #4205
54 lines
2.2 KiB
YAML
54 lines
2.2 KiB
YAML
name: Retry Step
|
|
description: 'Retry a step on failure or timeout'
|
|
inputs:
|
|
timeout_minutes:
|
|
description: Minutes to wait before attempt times out. Must only specify either minutes or seconds
|
|
required: false
|
|
timeout_seconds:
|
|
description: Seconds to wait before attempt times out. Must only specify either minutes or seconds
|
|
required: false
|
|
max_attempts:
|
|
description: Number of attempts to make before failing the step
|
|
required: true
|
|
default: 3
|
|
command:
|
|
description: The command to run
|
|
required: true
|
|
retry_wait_seconds:
|
|
description: Number of seconds to wait before attempting the next retry
|
|
required: false
|
|
default: 10
|
|
shell:
|
|
description: Alternate shell to use (defaults to powershell on windows, bash otherwise). Supports bash, python, pwsh, sh, cmd, and powershell
|
|
required: false
|
|
polling_interval_seconds:
|
|
description: Number of seconds to wait for each check that command has completed running
|
|
required: false
|
|
default: 1
|
|
retry_on:
|
|
description: Event to retry on. Currently supported [any, timeout, error]
|
|
warning_on_retry:
|
|
description: Whether to output a warning on retry, or just output to info. Defaults to true
|
|
default: true
|
|
on_retry_command:
|
|
description: Command to run before a retry (such as a cleanup script). Any error thrown from retry command is caught and surfaced as a warning.
|
|
required: false
|
|
continue_on_error:
|
|
description: Exits successfully even if an error occurs. Same as native continue-on-error behavior, but for use in composite actions. Default is false
|
|
default: false
|
|
new_command_on_retry:
|
|
description: Command to run if the first attempt fails. This command will be called on all subsequent attempts.
|
|
required: false
|
|
retry_on_exit_code:
|
|
description: Specific exit code to retry on. This will only retry for the given error code and fail immediately other error codes.
|
|
required: false
|
|
outputs:
|
|
total_attempts:
|
|
description: The final number of attempts made
|
|
exit_code:
|
|
description: The final exit code returned by the command
|
|
exit_error:
|
|
description: The final error returned by the command
|
|
runs:
|
|
using: 'node16'
|
|
main: 'dist/index.js' |