We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3249c0 commit 6acfcb8Copy full SHA for 6acfcb8
crates/codspeed/src/fifo.rs
@@ -19,7 +19,13 @@ impl BenchGuard {
19
ctl_fifo: FifoIpc::connect(ctl_fifo)?.with_writer()?,
20
ack_fifo: FifoIpc::connect(ack_fifo)?.with_reader()?,
21
};
22
+
23
+ instance.send_cmd(Command::SetIntegration {
24
+ name: "codspeed-rust".into(),
25
+ version: env!("CARGO_PKG_VERSION").into(),
26
+ })?; // FIXME: Just send it once
27
instance.send_cmd(Command::StartBenchmark)?;
28
29
Ok(instance)
30
}
31
crates/codspeed/src/shared.rs
@@ -12,6 +12,9 @@ pub enum Command {
12
StartBenchmark,
13
StopBenchmark,
14
Ack,
15
+ PingPerf,
16
+ SetIntegration { name: String, version: String },
17
+ Err,
18
//
// !!!!!!!!!!!!!!!!!!!!!!!!
0 commit comments