Skip to content

Strip symbols of inferno binaries to decrease size by 24x (#310) #248

Strip symbols of inferno binaries to decrease size by 24x (#310)

Strip symbols of inferno binaries to decrease size by 24x (#310) #248

Triggered via push November 25, 2023 15:59
Status Success
Total duration 2m 9s
Artifacts

test.yml

on: push
ubuntu / stable / minimal-versions
1m 4s
ubuntu / stable / minimal-versions
ubuntu / stable / coverage
1m 7s
ubuntu / stable / coverage
Matrix: os-check
Matrix: required
Fit to window
Zoom out
Zoom in

Annotations

2 warnings
redundant guard: src/flamegraph/mod.rs#L620
warning: redundant guard --> src/flamegraph/mod.rs:620:32 | 620 | Some(delta) if delta == 0 => write!( | ^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_guards = note: `#[warn(clippy::redundant_guards)]` on by default help: try | 620 - Some(delta) if delta == 0 => write!( 620 + Some(0) => write!( |
redundant guard: src/flamegraph/mod.rs#L620
warning: redundant guard --> src/flamegraph/mod.rs:620:32 | 620 | Some(delta) if delta == 0 => write!( | ^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_guards = note: `#[warn(clippy::redundant_guards)]` on by default help: try | 620 - Some(delta) if delta == 0 => write!( 620 + Some(0) => write!( |