-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
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
Cod 674 collect profiles while benchmarks are running #92
base: main
Are you sure you want to change the base?
Cod 674 collect profiles while benchmarks are running #92
Conversation
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
crates/codspeed/src/fifo.rs
Outdated
use std::os::unix::fs::OpenOptionsExt; | ||
use std::path::PathBuf; | ||
|
||
pub const RUNNER_CTL_FIFO: &str = "/tmp/runner.ctl.fifo"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We could replace the /tmp
previx with an env variable which would be set by the runner ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just thought about this again: I don't think it actually makes that much sense to do this. When having multiple runner instances, we would need to overwrite the env variable. So I think it makes this a bit more complicated for no added benefit
Is there any benefit to this that I'm missing?
TODO: