Project Bloodstone - sled 1.0 #960
test.yml
on: pull_request
clippy_check
43s
Example Tests
18s
Cross Compile
49s
Burn In
22s
Sanitizers
4s
Matrix: default
Annotations
23 errors and 13 warnings
Sanitizers
Process completed with exit code 1.
|
Example Tests
Process completed with exit code 101.
|
Cargo Test on ubuntu-latest
Process completed with exit code 101.
|
Burn In
Process completed with exit code 1.
|
Burn In
Process completed with exit code 1.
|
Cargo Test on macos-latest
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`
|
help: consider importing one of these items
|
40 + use core::cmp::Ordering;
|
40 + use core::sync::atomic::Ordering;
|
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`
|
help: consider importing one of these items
|
40 + use core::cmp::Ordering;
|
40 + use core::sync::atomic::Ordering;
|
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`
|
help: consider importing one of these items
|
40 + use core::cmp::Ordering;
|
40 + use core::sync::atomic::Ordering;
|
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`
|
help: consider importing one of these items
|
40 + use core::cmp::Ordering;
|
40 + use core::sync::atomic::Ordering;
|
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`
|
help: consider importing one of these items
|
40 + use core::cmp::Ordering;
|
40 + use core::sync::atomic::Ordering;
|
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`
|
help: consider importing one of these items
|
40 + use core::cmp::Ordering;
|
40 + use core::sync::atomic::Ordering;
|
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`
|
help: consider importing one of these items
|
40 + use core::cmp::Ordering;
|
40 + use core::sync::atomic::Ordering;
|
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 one of these items
|
40 + use core::sync::atomic::AtomicUsize;
|
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 one of these items
|
40 + use core::sync::atomic::AtomicUsize;
|
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 one of these items
|
40 + use core::sync::atomic::AtomicUsize;
|
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 one of these items
|
40 + use core::sync::atomic::AtomicUsize;
|
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 one of these items
|
40 + use core::sync::atomic::AtomicUsize;
|
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 one of these items
|
40 + use core::sync::atomic::AtomicUsize;
|
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
|
Cross Compile
Process completed with exit code 101.
|
Cargo Test on windows-latest
Process completed with exit code 1.
|
Sanitizers
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/cache@v2. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
Example Tests
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/cache@v2. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
Cargo Test on ubuntu-latest
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/cache@v2, actions/upload-artifact@v2. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
Cargo Test on ubuntu-latest
No files were found with the provided path: ./core-dumps/*
./target/release/deps/test_*. No artifacts will be uploaded.
|
Burn In
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/cache@v2, actions/upload-artifact@v2. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
Burn In
No files were found with the provided path: ./benchmarks/stress2/core-dumps/*
./benchmarks/stress2/target/release/stress2. No artifacts will be uploaded.
|
Cargo Test on macos-latest
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/cache@v2. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
clippy_check
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/toolchain@v1, actions-rs/clippy-check@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-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/
|
Cargo Test on windows-latest
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/cache@v2. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|