Skip to content

Forked workflows repository #30

Forked workflows repository

Forked workflows repository #30

Triggered via push July 10, 2024 21:39
Status Failure
Total duration 31s
Artifacts

development.yml

on: push
Matrix: test-build / Build & Test
analyze  /  Check | Audit
analyze / Check | Audit
analyze  /  Check | Clippy
analyze / Check | Clippy
release  /  Get Version
release / Get Version
analyze  /  Format Code
analyze / Format Code
release  /  Create Pre Release
release / Create Pre Release
release  /  Create Release Pull Request
release / Create Release Pull Request
Fit to window
Zoom out
Zoom in

Annotations

4 errors and 40 warnings
test-build / Build & Test (ubuntu-20.04)
Error: Cargo exited with 101 code.
test-build / Build & Test (macos-11)
The job was canceled because "ubuntu-20_04" failed.
test-build / Build & Test (windows-2019)
The job was canceled because "ubuntu-20_04" failed.
test-build / Build & Test (windows-2019)
The operation was canceled.
unused variable: `section`: core/src/core/engine.rs#L40
warning: unused variable: `section` --> core/src/core/engine.rs:40:32 | 40 | fn section_register(&self, section: &'static crate::profiler::section::Section) -> NonZeroU32 { | ^^^^^^^ help: if this is intentional, prefix it with an underscore: `_section` | = note: `#[warn(unused_variables)]` on by default
unused variable: `id`: core/src/core/engine.rs#L44
warning: unused variable: `id` --> core/src/core/engine.rs:44:43 | 44 | fn section_record<F: FieldSet>(&self, id: NonZeroU32, start: u64, end: u64, fields: &F) { | ^^ help: if this is intentional, prefix it with an underscore: `_id`
unused variable: `start`: core/src/core/engine.rs#L44
warning: unused variable: `start` --> core/src/core/engine.rs:44:59 | 44 | fn section_record<F: FieldSet>(&self, id: NonZeroU32, start: u64, end: u64, fields: &F) { | ^^^^^ help: if this is intentional, prefix it with an underscore: `_start`
unused variable: `end`: core/src/core/engine.rs#L44
warning: unused variable: `end` --> core/src/core/engine.rs:44:71 | 44 | fn section_record<F: FieldSet>(&self, id: NonZeroU32, start: u64, end: u64, fields: &F) { | ^^^ help: if this is intentional, prefix it with an underscore: `_end`
unused variable: `fields`: core/src/core/engine.rs#L44
warning: unused variable: `fields` --> core/src/core/engine.rs:44:81 | 44 | fn section_record<F: FieldSet>(&self, id: NonZeroU32, start: u64, end: u64, fields: &F) { | ^^^^^^ help: if this is intentional, prefix it with an underscore: `_fields`
unused variable: `callsite`: core/src/core/engine.rs#L50
warning: unused variable: `callsite` --> core/src/core/engine.rs:50:33 | 50 | fn register_callsite(&self, callsite: &'static Callsite) -> NonZeroU32 { | ^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_callsite`
unused variable: `callsite`: core/src/core/engine.rs#L54
warning: unused variable: `callsite` --> core/src/core/engine.rs:54:40 | 54 | fn span_create<F: FieldSet>(&self, callsite: NonZeroU32, fields: &F) -> NonZeroU32 { | ^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_callsite`
unused variable: `fields`: core/src/core/engine.rs#L54
warning: unused variable: `fields` --> core/src/core/engine.rs:54:62 | 54 | fn span_create<F: FieldSet>(&self, callsite: NonZeroU32, fields: &F) -> NonZeroU32 { | ^^^^^^ help: if this is intentional, prefix it with an underscore: `_fields`
unused variable: `id`: core/src/core/engine.rs#L58
warning: unused variable: `id` --> core/src/core/engine.rs:58:26 | 58 | fn span_enter(&self, id: NonZeroU32) { | ^^ help: if this is intentional, prefix it with an underscore: `_id`
unused variable: `id`: core/src/core/engine.rs#L62
warning: unused variable: `id` --> core/src/core/engine.rs:62:40 | 62 | fn span_record<F: FieldSet>(&self, id: NonZeroU32, fields: &F) { | ^^ help: if this is intentional, prefix it with an underscore: `_id`
unused variable: `fields`: core/src/core/engine.rs#L62
warning: unused variable: `fields` --> core/src/core/engine.rs:62:56 | 62 | fn span_record<F: FieldSet>(&self, id: NonZeroU32, fields: &F) { | ^^^^^^ help: if this is intentional, prefix it with an underscore: `_fields`
unused variable: `id`: core/src/core/engine.rs#L66
warning: unused variable: `id` --> core/src/core/engine.rs:66:25 | 66 | fn span_exit(&self, id: NonZeroU32) { | ^^ help: if this is intentional, prefix it with an underscore: `_id`
unused variable: `callsite`: core/src/core/engine.rs#L72
warning: unused variable: `callsite` --> core/src/core/engine.rs:72:32 | 72 | fn log<F: FieldSet>(&self, callsite: &'static crate::logger::Callsite, msg: Arguments, fields: &F) { | ^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_callsite`
unused variable: `msg`: core/src/core/engine.rs#L72
warning: unused variable: `msg` --> core/src/core/engine.rs:72:76 | 72 | fn log<F: FieldSet>(&self, callsite: &'static crate::logger::Callsite, msg: Arguments, fields: &F) { | ^^^ help: if this is intentional, prefix it with an underscore: `_msg`
unused variable: `fields`: core/src/core/engine.rs#L72
warning: unused variable: `fields` --> core/src/core/engine.rs:72:92 | 72 | fn log<F: FieldSet>(&self, callsite: &'static crate::logger::Callsite, msg: Arguments, fields: &F) { | ^^^^^^ help: if this is intentional, prefix it with an underscore: `_fields`
variant `None` is never constructed: core/src/core/engine.rs#L35
warning: variant `None` is never constructed --> core/src/core/engine.rs:35:5 | 34 | pub enum Engine { | ------ variant in this enum 35 | None, | ^^^^ | = note: `#[warn(dead_code)]` on by default
fields `location` and `level` are never read: core/src/logger.rs#L34
warning: fields `location` and `level` are never read --> core/src/logger.rs:34:5 | 33 | pub struct Callsite { | -------- fields in this struct 34 | location: Location, | ^^^^^^^^ 35 | level: Level | ^^^^^
fields `name` and `location` are never read: core/src/trace/span.rs#L36
warning: fields `name` and `location` are never read --> core/src/trace/span.rs:36:5 | 35 | pub struct Callsite { | -------- fields in this struct 36 | name: &'static str, | ^^^^ 37 | location: Location, | ^^^^^^^^
unused import: `std::num::NonZeroU32`: core/src/profiler/section.rs#L129
warning: unused import: `std::num::NonZeroU32` --> core/src/profiler/section.rs:129:13 | 129 | use std::num::NonZeroU32; | ^^^^^^^^^^^^^^^^^^^^ | = note: `#[warn(unused_imports)]` on by default
unused import: `crate::profiler::section::Section`: core/src/profiler/section.rs#L130
warning: unused import: `crate::profiler::section::Section` --> core/src/profiler/section.rs:130:13 | 130 | use crate::profiler::section::Section; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
unused variable: `section`: core/src/core/engine.rs#L40
warning: unused variable: `section` --> core/src/core/engine.rs:40:32 | 40 | fn section_register(&self, section: &'static crate::profiler::section::Section) -> NonZeroU32 { | ^^^^^^^ help: if this is intentional, prefix it with an underscore: `_section` | = note: `#[warn(unused_variables)]` on by default
unused variable: `id`: core/src/core/engine.rs#L44
warning: unused variable: `id` --> core/src/core/engine.rs:44:43 | 44 | fn section_record<F: FieldSet>(&self, id: NonZeroU32, start: u64, end: u64, fields: &F) { | ^^ help: if this is intentional, prefix it with an underscore: `_id`
unused variable: `start`: core/src/core/engine.rs#L44
warning: unused variable: `start` --> core/src/core/engine.rs:44:59 | 44 | fn section_record<F: FieldSet>(&self, id: NonZeroU32, start: u64, end: u64, fields: &F) { | ^^^^^ help: if this is intentional, prefix it with an underscore: `_start`
unused variable: `end`: core/src/core/engine.rs#L44
warning: unused variable: `end` --> core/src/core/engine.rs:44:71 | 44 | fn section_record<F: FieldSet>(&self, id: NonZeroU32, start: u64, end: u64, fields: &F) { | ^^^ help: if this is intentional, prefix it with an underscore: `_end`
unused variable: `fields`: core/src/core/engine.rs#L44
warning: unused variable: `fields` --> core/src/core/engine.rs:44:81 | 44 | fn section_record<F: FieldSet>(&self, id: NonZeroU32, start: u64, end: u64, fields: &F) { | ^^^^^^ help: if this is intentional, prefix it with an underscore: `_fields`
unused variable: `callsite`: core/src/core/engine.rs#L50
warning: unused variable: `callsite` --> core/src/core/engine.rs:50:33 | 50 | fn register_callsite(&self, callsite: &'static Callsite) -> NonZeroU32 { | ^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_callsite`
unused variable: `callsite`: core/src/core/engine.rs#L54
warning: unused variable: `callsite` --> core/src/core/engine.rs:54:40 | 54 | fn span_create<F: FieldSet>(&self, callsite: NonZeroU32, fields: &F) -> NonZeroU32 { | ^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_callsite`
unused variable: `fields`: core/src/core/engine.rs#L54
warning: unused variable: `fields` --> core/src/core/engine.rs:54:62 | 54 | fn span_create<F: FieldSet>(&self, callsite: NonZeroU32, fields: &F) -> NonZeroU32 { | ^^^^^^ help: if this is intentional, prefix it with an underscore: `_fields`
unused variable: `id`: core/src/core/engine.rs#L58
warning: unused variable: `id` --> core/src/core/engine.rs:58:26 | 58 | fn span_enter(&self, id: NonZeroU32) { | ^^ help: if this is intentional, prefix it with an underscore: `_id`
unused variable: `id`: core/src/core/engine.rs#L62
warning: unused variable: `id` --> core/src/core/engine.rs:62:40 | 62 | fn span_record<F: FieldSet>(&self, id: NonZeroU32, fields: &F) { | ^^ help: if this is intentional, prefix it with an underscore: `_id`
unused variable: `fields`: core/src/core/engine.rs#L62
warning: unused variable: `fields` --> core/src/core/engine.rs:62:56 | 62 | fn span_record<F: FieldSet>(&self, id: NonZeroU32, fields: &F) { | ^^^^^^ help: if this is intentional, prefix it with an underscore: `_fields`
unused variable: `id`: core/src/core/engine.rs#L66
warning: unused variable: `id` --> core/src/core/engine.rs:66:25 | 66 | fn span_exit(&self, id: NonZeroU32) { | ^^ help: if this is intentional, prefix it with an underscore: `_id`
unused variable: `callsite`: core/src/core/engine.rs#L72
warning: unused variable: `callsite` --> core/src/core/engine.rs:72:32 | 72 | fn log<F: FieldSet>(&self, callsite: &'static crate::logger::Callsite, msg: Arguments, fields: &F) { | ^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_callsite`
unused variable: `msg`: core/src/core/engine.rs#L72
warning: unused variable: `msg` --> core/src/core/engine.rs:72:76 | 72 | fn log<F: FieldSet>(&self, callsite: &'static crate::logger::Callsite, msg: Arguments, fields: &F) { | ^^^ help: if this is intentional, prefix it with an underscore: `_msg`
unused variable: `fields`: core/src/core/engine.rs#L72
warning: unused variable: `fields` --> core/src/core/engine.rs:72:92 | 72 | fn log<F: FieldSet>(&self, callsite: &'static crate::logger::Callsite, msg: Arguments, fields: &F) { | ^^^^^^ help: if this is intentional, prefix it with an underscore: `_fields`
variant `None` is never constructed: core/src/core/engine.rs#L35
warning: variant `None` is never constructed --> core/src/core/engine.rs:35:5 | 34 | pub enum Engine { | ------ variant in this enum 35 | None, | ^^^^ | = note: `#[warn(dead_code)]` on by default
static `SECTION2` is never used: core/src/profiler/section.rs#L147
warning: static `SECTION2` is never used --> core/src/profiler/section.rs:147:16 | 147 | static SECTION2: Section = Section::new("api_test2", location!(), Level::Event) | ^^^^^^^^
fields `location` and `level` are never read: core/src/logger.rs#L34
warning: fields `location` and `level` are never read --> core/src/logger.rs:34:5 | 33 | pub struct Callsite { | -------- fields in this struct 34 | location: Location, | ^^^^^^^^ 35 | level: Level | ^^^^^
fields `name` and `location` are never read: core/src/trace/span.rs#L36
warning: fields `name` and `location` are never read --> core/src/trace/span.rs:36:5 | 35 | pub struct Callsite { | -------- fields in this struct 36 | name: &'static str, | ^^^^ 37 | location: Location, | ^^^^^^^^
test-build / Build & Test (ubuntu-20.04)
The following actions uses Node.js version which is deprecated and will be forced to run on node20: actions/checkout@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/