Latest nightly #789
nightly.yml
on: schedule
build x86_64 boot image (latest nightly)
45s
check (latest nightly)
24s
Annotations
2 errors and 16 warnings
check (latest nightly)
Process completed with exit code 1.
|
build x86_64 boot image (latest nightly)
Process completed with exit code 101.
|
check (latest nightly)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions-rs/toolchain@v1.0.6, extractions/setup-just@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
check (latest nightly)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/toolchain@v1.0.6. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
check (latest nightly):
cordyceps/src/list.rs#L305
warning: you should consider adding a `Default` implementation for `List<T>`
--> cordyceps/src/list.rs:305:5
|
305 | / pub const fn new() -> List<T> {
306 | | List {
307 | | head: None,
308 | | tail: None,
309 | | len: 0,
310 | | }
311 | | }
| |_____^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#new_without_default
= note: `#[warn(clippy::new_without_default)]` on by default
help: try adding this
|
302 + impl<T: Linked<Links<T>> + ?Sized> Default for List<T> {
303 + fn default() -> Self {
304 + Self::new()
305 + }
306 + }
|
|
check (latest nightly):
cordyceps/src/stack.rs#L113
warning: you should consider adding a `Default` implementation for `TransferStack<T>`
--> cordyceps/src/stack.rs:113:5
|
113 | / pub const fn new() -> Self {
114 | | Self {
115 | | head: AtomicPtr::new(ptr::null_mut()),
116 | | }
117 | | }
| |_____^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#new_without_default
help: try adding this
|
106 + impl<T> Default for TransferStack<T>
107 + where
108 + T: Linked<Links<T>>,
109 + {
110 + fn default() -> Self {
111 + Self::new()
112 + }
113 + }
|
|
check (latest nightly):
cordyceps/src/stack.rs#L208
warning: you should consider adding a `Default` implementation for `Stack<T>`
--> cordyceps/src/stack.rs:208:5
|
208 | / pub const fn new() -> Self {
209 | | Self { head: None }
210 | | }
| |_____^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#new_without_default
help: try adding this
|
202 + impl<T> Default for Stack<T>
203 + where
204 + T: Linked<Links<T>>,
205 + {
206 + fn default() -> Self {
207 + Self::new()
208 + }
209 + }
|
|
check (latest nightly):
cordyceps/src/stack.rs#L337
warning: you should consider adding a `Default` implementation for `Links<T>`
--> cordyceps/src/stack.rs:337:5
|
337 | / pub const fn new() -> Self {
338 | | Self {
339 | | next: UnsafeCell::new(None),
340 | | _unpin: PhantomPinned,
341 | | }
342 | | }
| |_____^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#new_without_default
help: try adding this
|
333 + impl<T> Default for Links<T> {
334 + fn default() -> Self {
335 + Self::new()
336 + }
337 + }
|
|
check (latest nightly)
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/
|
check (latest nightly)
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/
|
check (latest nightly)
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/
|
check (latest nightly)
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/
|
build x86_64 boot image (latest nightly)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions-rs/toolchain@v1.0.6. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
build x86_64 boot image (latest nightly)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/toolchain@v1.0.6. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
build x86_64 boot image (latest nightly)
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/
|
build x86_64 boot image (latest nightly)
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/
|
build x86_64 boot image (latest nightly)
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/
|
build x86_64 boot image (latest nightly)
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/
|