Skip to content

Project Bloodstone - sled 1.0 #1002

Project Bloodstone - sled 1.0

Project Bloodstone - sled 1.0 #1002

Triggered via pull request May 7, 2025 01:43
Status Failure
Total duration 34s
Artifacts

test.yml

on: pull_request
clippy_check
28s
clippy_check
Example Tests
2s
Example Tests
Cross Compile
24s
Cross Compile
Burn In
4s
Burn In
Sanitizers
3s
Sanitizers
Matrix: default
Fit to window
Zoom out
Zoom in

Annotations

22 errors and 6 warnings
Cargo Test on ubuntu-latest
Missing download info for actions/cache@v2
Example Tests
Missing download info for actions/cache@v2
Cargo Test on macos-latest
Missing download info for actions/cache@v2
Sanitizers
Missing download info for actions/cache@v2
Burn In
Missing download info for actions/cache@v2
Cargo Test on windows-latest
Missing download info for actions/cache@v2
Cross Compile
Process completed with exit code 101.
failed to resolve: use of undeclared type `Ordering`: src/alloc.rs#L77
error[E0433]: failed to resolve: use of undeclared type `Ordering` --> src/alloc.rs:77:47 | 77 | RESIDENT.fetch_sub(layout.size(), Ordering::Relaxed); | ^^^^^^^^ use of undeclared type `Ordering` | = note: enum `crate::heap::sys_io::Ordering` exists but is inaccessible help: consider importing one of these enums | 40 + use std::cmp::Ordering; | 40 + use std::sync::atomic::Ordering; |
failed to resolve: use of undeclared type `Ordering`: src/alloc.rs#L76
error[E0433]: failed to resolve: use of undeclared type `Ordering` --> src/alloc.rs:76:44 | 76 | FREED.fetch_add(layout.size(), Ordering::Relaxed); | ^^^^^^^^ use of undeclared type `Ordering` | = note: enum `crate::heap::sys_io::Ordering` exists but is inaccessible help: consider importing one of these enums | 40 + use std::cmp::Ordering; | 40 + use std::sync::atomic::Ordering; |
failed to resolve: use of undeclared type `Ordering`: src/alloc.rs#L69
error[E0433]: failed to resolve: use of undeclared type `Ordering` --> src/alloc.rs:69:47 | 69 | RESIDENT.fetch_add(layout.size(), Ordering::Relaxed); | ^^^^^^^^ use of undeclared type `Ordering` | = note: enum `crate::heap::sys_io::Ordering` exists but is inaccessible help: consider importing one of these enums | 40 + use std::cmp::Ordering; | 40 + use std::sync::atomic::Ordering; |
failed to resolve: use of undeclared type `Ordering`: src/alloc.rs#L68
error[E0433]: failed to resolve: use of undeclared type `Ordering` --> src/alloc.rs:68:48 | 68 | ALLOCATED.fetch_add(layout.size(), Ordering::Relaxed); | ^^^^^^^^ use of undeclared type `Ordering` | = note: enum `crate::heap::sys_io::Ordering` exists but is inaccessible help: consider importing one of these enums | 40 + use std::cmp::Ordering; | 40 + use std::sync::atomic::Ordering; |
failed to resolve: use of undeclared type `Ordering`: src/alloc.rs#L58
error[E0433]: failed to resolve: use of undeclared type `Ordering` --> src/alloc.rs:58:23 | 58 | RESIDENT.load(Ordering::Relaxed) | ^^^^^^^^ use of undeclared type `Ordering` | = note: enum `crate::heap::sys_io::Ordering` exists but is inaccessible help: consider importing one of these enums | 40 + use std::cmp::Ordering; | 40 + use std::sync::atomic::Ordering; |
failed to resolve: use of undeclared type `Ordering`: src/alloc.rs#L54
error[E0433]: failed to resolve: use of undeclared type `Ordering` --> src/alloc.rs:54:23 | 54 | FREED.swap(0, Ordering::Relaxed) | ^^^^^^^^ use of undeclared type `Ordering` | = note: enum `crate::heap::sys_io::Ordering` exists but is inaccessible help: consider importing one of these enums | 40 + use std::cmp::Ordering; | 40 + use std::sync::atomic::Ordering; |
failed to resolve: use of undeclared type `Ordering`: src/alloc.rs#L50
error[E0433]: failed to resolve: use of undeclared type `Ordering` --> src/alloc.rs:50:27 | 50 | ALLOCATED.swap(0, Ordering::Relaxed) | ^^^^^^^^ use of undeclared type `Ordering` | = note: enum `crate::heap::sys_io::Ordering` exists but is inaccessible help: consider importing one of these enums | 40 + use std::cmp::Ordering; | 40 + use std::sync::atomic::Ordering; |
failed to resolve: use of undeclared type `AtomicUsize`: src/alloc.rs#L47
error[E0433]: failed to resolve: use of undeclared type `AtomicUsize` --> src/alloc.rs:47:36 | 47 | static RESIDENT: AtomicUsize = AtomicUsize::new(0); | ^^^^^^^^^^^ use of undeclared type `AtomicUsize` | help: consider importing this struct | 40 + use std::sync::atomic::AtomicUsize; |
cannot find type `AtomicUsize` in this scope: src/alloc.rs#L47
error[E0412]: cannot find type `AtomicUsize` in this scope --> src/alloc.rs:47:22 | 47 | static RESIDENT: AtomicUsize = AtomicUsize::new(0); | ^^^^^^^^^^^ not found in this scope | help: consider importing this struct | 40 + use std::sync::atomic::AtomicUsize; |
failed to resolve: use of undeclared type `AtomicUsize`: src/alloc.rs#L46
error[E0433]: failed to resolve: use of undeclared type `AtomicUsize` --> src/alloc.rs:46:33 | 46 | static FREED: AtomicUsize = AtomicUsize::new(0); | ^^^^^^^^^^^ use of undeclared type `AtomicUsize` | help: consider importing this struct | 40 + use std::sync::atomic::AtomicUsize; |
cannot find type `AtomicUsize` in this scope: src/alloc.rs#L46
error[E0412]: cannot find type `AtomicUsize` in this scope --> src/alloc.rs:46:19 | 46 | static FREED: AtomicUsize = AtomicUsize::new(0); | ^^^^^^^^^^^ not found in this scope | help: consider importing this struct | 40 + use std::sync::atomic::AtomicUsize; |
failed to resolve: use of undeclared type `AtomicUsize`: src/alloc.rs#L45
error[E0433]: failed to resolve: use of undeclared type `AtomicUsize` --> src/alloc.rs:45:37 | 45 | static ALLOCATED: AtomicUsize = AtomicUsize::new(0); | ^^^^^^^^^^^ use of undeclared type `AtomicUsize` | help: consider importing this struct | 40 + use std::sync::atomic::AtomicUsize; |
cannot find type `AtomicUsize` in this scope: src/alloc.rs#L45
error[E0412]: cannot find type `AtomicUsize` in this scope --> src/alloc.rs:45:23 | 45 | static ALLOCATED: AtomicUsize = AtomicUsize::new(0); | ^^^^^^^^^^^ not found in this scope | help: consider importing this struct | 40 + use std::sync::atomic::AtomicUsize; |
the name `alloc` is defined multiple times: src/alloc.rs#L39
error[E0428]: the name `alloc` is defined multiple times --> src/alloc.rs:39:1 | 14 | mod alloc { | --------- previous definition of the module `alloc` here ... 39 | mod alloc { | ^^^^^^^^^ `alloc` redefined here | = note: `alloc` must be defined only once in the type namespace of this module
clippy_check
Clippy had exited with the 101 exit code
unused import: `alloc::*`: src/alloc.rs#L5
warning: unused import: `alloc::*` --> src/alloc.rs:5:9 | 5 | pub use alloc::*; | ^^^^^^^^ | = note: `#[warn(unused_imports)]` on by default
redundant field names in struct initialization: src/object_cache.rs#L697
warning: redundant field names in struct initialization --> src/object_cache.rs:697:25 | 697 | collection_id: collection_id, | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: replace it with: `collection_id` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_field_names = note: `#[warn(clippy::redundant_field_names)]` on by default
clippy_check
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
clippy_check
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
clippy_check
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
clippy_check
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/