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
Currently, the runner uses the Linux timeout (from the coreutils homebrew formula on macOS) command to execute commands with a timeout.
This is to improve execution by using multiple channels and select to implement the timeout in Go. See gobyexample/timeouts for an example.
select
Acceptance Criteria (in progress):
X
exec.Command
timeout
The text was updated successfully, but these errors were encountered:
Implement timeout of command execution by Go's context
e78d02a
Modify runtime.go and merge private function `runCommand` into `runCmd` Issue #17
Implement timeout of command execution by Go's context (#22)
1360aa3
siwei-li
No branches or pull requests
Currently, the runner uses the Linux timeout (from the coreutils homebrew formula on macOS) command to execute commands with a timeout.
This is to improve execution by using multiple channels and
select
to implement the timeout in Go. See gobyexample/timeouts for an example.Acceptance Criteria (in progress):
X
second timeoutselect
withexec.Command
instead of thetimeout
external processThe text was updated successfully, but these errors were encountered: